资源描述:
《数字图像处理作业2.docx》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、空间滤波器比较——袁潘宸Contents§生成原图§算术均值滤波§几何均值滤波§谐波均值滤波§逆谐波均值滤波§中值滤波§中点滤波§最大值滤波§最小值滤波生成原图tk=1:17+7:(17+7)*10;I=zeros(210+10*2,(17+7)*10);fori=1:length(tk)-1I(10:10+210,tk(i+1):tk(i+1)+6)=1;endI=logical(I);figure,imshow(I),title('原图');算术均值滤波a=spfilt(I,'amean',3,3);figure;subplot
2、(1,2,1),imshow(I),title('原图');subplot(1,2,2),imshow(a),title('算术均值滤波');几何均值滤波b=spfilt(I,'gmean',3,3);%3×3几何均值滤波figure;subplot(1,2,1),imshow(I),title('原图');subplot(1,2,2),imshow(b),title('几何均值滤波');谐波均值滤波c=spfilt(I,'hmean',3,3);%3×3谐波均值滤波figure;subplot(1,2,1),imshow(I),t
3、itle('原图');subplot(1,2,2),imshow(c),title('谐波均值滤波');逆谐波均值滤波d=spfilt(I,'chmean',3,3);%3×3逆谐波均值滤波figure;subplot(1,2,1),imshow(I),title('原图');subplot(1,2,2),imshow(d),title('逆谐波均值滤波');中值滤波e=spfilt(I,'median',3,3);%3×3中值滤波figure;subplot(1,2,1),imshow(I),title('原图');subplot
4、(1,2,2),imshow(2),title('中值滤波');中点滤波f=spfilt(I,'midpoint',3,3);%3×3中点滤波figure;subplot(1,2,1),imshow(I),title('原图');subplot(1,2,2),imshow(f),title('中点滤波');最大值滤波g=spfilt(I,'max',3,3);figure;subplot(1,2,1),imshow(I),title('原图');subplot(1,2,2),imshow(g),title('最大值滤波');最小值滤
5、波h=spfilt(I,'min',3,3);figure;subplot(1,2,1),imshow(I),title('原图');subplot(1,2,2),imshow(h),title('最小值滤波');PublishedwithMATLAB®R2012b