1、(5)模板中值滤波去椒盐噪声I=imread(E:图片1.jpg);I=rgb2gray(I);J=imnoise(I,salt subplot(231),imshow(I);title(原图像 );subplot(232),imshow(J);title(添加椒盐噪声图像);k1=medfilt2(J); %进行 3*3 模板中值滤波k2=medfilt2(J,5,5); %进行 5*5 模板中值滤波k3=medfilt2(J,7,7); %进行 7*7 模板中值滤波k4=medfilt2(J,9,9); %进行 9*9 模板中值滤波subplot(233),imshow(k1);title
2、(3*3 模板中值滤波);subplot(234),imshow(k2);title(5*5 模板中值滤波);subplot(235),imshow(k3);title(7*7 模板中值滤波);subplot(236),imshow(k4);title(9*9 模板中值滤波);(6)模板中值滤波去高斯噪声I=imread(E:图片1.jpg);I=rgb2gray(I);J=imnoise(I,gaussian,0.3,0.3);subplot(231),imshow(I);title(原图像 );subplot(232),imshow(J);title(添加高斯噪声图像);k1=medfil
3、t2(J); %进行 3*3 模板中值滤波k2=medfilt2(J,5,5); %进行 5*5 模板中值滤波k3=medfilt2(J,7,7); %进行 7*7 模板中值滤波k4=medfilt2(J,9,9); %进行 9*9 模板中值滤波subplot(233),imshow(k1);title(3*3 模板中值滤波);subplot(234),imshow(k2);title(5*5 模板中值滤波);subplot(235),imshow(k3);title(7*7 模板中值滤波);subplot(236),imshow(k4);title(9*9 模板中值滤波);(7)模板均值滤波
4、去椒盐噪声I=imread(E:图片1.jpg);I=rgb2gray(I);J=imnoise(I,salt subplot(231),imshow(I);title(原图像 );subplot(232),imshow(J);title(添加椒盐噪声图像);k1=filter2(fspecial(average,3),I1)/255; %进行 3*3 模板均值滤波k2=filter2(fspecial(average,5),I1)/255; %进行 5*5 模板均值滤波k3=filter2(fspecial(average,7),I1)/255; %进行 7*7 模板均值滤波k4=filte
5、r2(fspecial(average,9),I1)/255; %进行 9*9 模板均值滤波subplot(233),imshow(k1);title(3*3 模板均值滤波);subplot(234),imshow(k2);title(5*5 模板均值滤波);subplot(235),imshow(k3);title(7*7 模板均值滤波);(8)模板均值滤波去高斯噪声I=imread(E:图片1.jpg);I=rgb2gray(I);J=imnoise(I,gaussian,0.3,0.3);subplot(231),imshow(I);title(原图像 );subplot(232),im
6、show(J);title(添加高斯噪声图像);k1=filter2(fspecial(average,3),I1)/255; %进行 3*3 模板均值滤波k2=filter2(fspecial(average,5),I1)/255; %进行 5*5 模板均值滤波k3=filter2(fspecial(average,7),I1)/255; %进行 7*7 模板均值滤波k4=filter2(fspecial(average,9),I1)/255; %进行 9*9 模板均值滤波subplot(233),imshow(k1);title(3*3 模板均值滤波);subplot(234),imshow(k2);title(5*5 模板均值滤波);subplot(235),imshow(k3);title(7*7 模板均值滤波);subplot(236),imshow(k4);title(9*9 模板均值滤波);