MATLAB中值滤波
我使用MATLAB进行数字图像中值滤波,程序感觉都对但就是个模板的仿真结果出不了,想请问是怎么回事,附程序。I=imread('C:\image\lena2.jpg');...
我使用MATLAB进行数字图像中值滤波,程序感觉都对但就是个模板的仿真结果出不了,想请问是怎么回事,附程序。
I=imread('C:\image\lena2.jpg');J=imnoise(I,'salt & pepper' ,0.02);
subplot(231);imshow(I);
subplot(232);imshow(J);
K1=medfilt2(J);
K2=medfilt2(J,[5 5]);
K3=medfilt2(J,[7 7]);
K4=medfilt2(J,[9 9]);
subplot(233);imshow(K1);
subplot(234);imshow(K2);
subplot(235);imshow(K3);
subplot(236);imshow(K4); 展开
I=imread('C:\image\lena2.jpg');J=imnoise(I,'salt & pepper' ,0.02);
subplot(231);imshow(I);
subplot(232);imshow(J);
K1=medfilt2(J);
K2=medfilt2(J,[5 5]);
K3=medfilt2(J,[7 7]);
K4=medfilt2(J,[9 9]);
subplot(233);imshow(K1);
subplot(234);imshow(K2);
subplot(235);imshow(K3);
subplot(236);imshow(K4); 展开
1个回答
展开全部
你不能直接读取图像吧 要先变成RGB灰度图像吧
I=rgb2gray(I);
已经跑出来了 你试下
I=imread('C:\image\lena2.jpg');
I=rgb2gray(I);
J=imnoise(I,'salt & pepper' ,0.02);
subplot(231);imshow(I);
subplot(232);imshow(J);
K1=medfilt2(J);
K2=medfilt2(J,[5 5]);
K3=medfilt2(J,[7 7]);
K4=medfilt2(J,[9 9]);
subplot(233);
imshow(K1);
subplot(234);
imshow(K2);
subplot(235);
imshow(K3);
subplot(236);
imshow(K4);
I=rgb2gray(I);
已经跑出来了 你试下
I=imread('C:\image\lena2.jpg');
I=rgb2gray(I);
J=imnoise(I,'salt & pepper' ,0.02);
subplot(231);imshow(I);
subplot(232);imshow(J);
K1=medfilt2(J);
K2=medfilt2(J,[5 5]);
K3=medfilt2(J,[7 7]);
K4=medfilt2(J,[9 9]);
subplot(233);
imshow(K1);
subplot(234);
imshow(K2);
subplot(235);
imshow(K3);
subplot(236);
imshow(K4);
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询