MATLAB的椒盐噪声干扰图像、领域3*3二维中值滤波、领域5*5二维中值滤波、领域7*7二维中值滤波
I=imread('可爱.jpg');
J=rgb2gray(I);
M=imnoise(I,'salt & pepper',0.04);
K1=medfilt2(M,[3 3]);
K2=medfilt2(M,[5 5]);
K3=medfilt2(M,[7 7]);
subplot(2,2,1);imshow(M);
title('椒盐噪声干扰图像');
subplot(2,2,2);imshow(K1);
title('领域3*3二维中值滤波');
subplot(2,2,3);imshow(K2);
title('领域5*5二维中值滤波');
subplot(2,2,4);imshow(K3);
title('领域7*7二维中值滤波');