资源简介

对图像进行平滑处理,能够很好的去除噪声的干扰,锐化图像能得到很好的效果

资源截图

代码片段和文件信息

I = imread(‘Miss.bmp‘);
figure(1); 
imshow(I); title(‘Original Image‘);

hsize=[33];

H = fspecial(‘average‘hsize);
smoothed = imfilter(IH‘replicate‘);
figure(2);
imshow(smoothed); title(‘3*3 Smoothed Image‘);

hsize=[55];

H = fspecial(‘average‘hsize);
smoothed = imfilter(IH‘replicate‘);
figure(3);
imshow(smoothed); title(‘5*5 Smoothed Image‘);

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        371  2007-04-04 14:39  新建文件夹\average_smooth.m

     文件      66616  2000-07-25 04:21  新建文件夹\Miss.bmp

     目录          0  2010-10-09 22:34  新建文件夹

----------- ---------  ---------- -----  ----

                66987                    3


评论

共有 条评论