图像的退化与复原

123

(1) 进入Matlab6.x软件实验平台

(2) 读取Lena图像并显示。

I=imread('lena.jpg');

图像的退化与复原

imshow(I);

(3) 设计运动模糊滤波器、设计高斯模糊噪声滤波器。

运动模糊滤波器:

I=imread('lena.jpg');

noise=0.1*randn(size(I));

psf=fspecial('motion',21,11);

blurred=imfilter(I,psf,'circular');

subplot(1,2,2),imshow(blurred);

subplot(1,2,1),imshow(I);

高斯模糊噪声滤波器:

I=imread('lena.jpg');

noise=0.1*randn(size(I));

psf=fspecial('gaussian',21,11);

blurred=imfilter(I,psf,'circular');

subplot(1,2,2),imshow(blurred);

subplot(1,2,1),imshow(I);

(4) 生成退化或降质图像并显示。运动模糊

图像的退化与复原

:

你可能喜欢

  • 模糊图像复原
  • 图像复原论文
  • 图像处理技术
  • 噪声模型
  • MATLAB函数大全
  • 指纹识别系统

图像的退化与复原相关文档

最新文档

返回顶部