没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
I=imread('C:\Users\Administrator\Desktop\lena.jpg');
J=imnoise(I,'gaussian',0,0.005);
subplot(2,3,1);imshow(I);
title('原始图像');
subplot(2,3,2);
imshow(J);
title('加入高斯噪声之后的图像');
K1=filter2(fspecial('average',3),J)/255;
K2=filter2(fspecial('average',5),J)/255;
K3=filter2(fspecial('average',7),J)/255;
K4= filter2(fspecial('average',9),J)/255;
subplot(2,3,3);imshow(K1); title('改进后的图像1');
subplot(2,3,4); imshow(K2); title('改进后的图像2');
subplot(2,3,5);imshow(K3); title('改进后的图像3');
subplot(2,3,6);imshow(K4); title('改进后的图像');
实验一:维纳滤波对不同噪声的滤波效果
I=imread('C:\Users\Administrator\Desktop\lena.jpg');
subplot(3,3,1);imshow(I); title('原始图像');
J1=imnoise(I,'gaussian',0,0.02);
subplot(3,3,2);imshow(J1);
title('加高斯噪声图');
K1=wiener2(J1,[3 3]);
subplot(3,3,3);imshow(K1);
title('维纳滤波后的图像');
I=imread('C:\Users\Administrator\Desktop\lena.jpg');
subplot(3,3,4);imshow(I); title('原始图像');
J2=imnoise(I,'salt & pepper',0.02);
subplot(3,3,5);imshow(J2);
title('加椒盐噪声图');
K1=wiener2(J2,[3 3]);
J=imnoise(I,'gaussian',0,0.005);
subplot(2,3,1);imshow(I);
title('原始图像');
subplot(2,3,2);
imshow(J);
title('加入高斯噪声之后的图像');
K1=filter2(fspecial('average',3),J)/255;
K2=filter2(fspecial('average',5),J)/255;
K3=filter2(fspecial('average',7),J)/255;
K4= filter2(fspecial('average',9),J)/255;
subplot(2,3,3);imshow(K1); title('改进后的图像1');
subplot(2,3,4); imshow(K2); title('改进后的图像2');
subplot(2,3,5);imshow(K3); title('改进后的图像3');
subplot(2,3,6);imshow(K4); title('改进后的图像');
实验一:维纳滤波对不同噪声的滤波效果
I=imread('C:\Users\Administrator\Desktop\lena.jpg');
subplot(3,3,1);imshow(I); title('原始图像');
J1=imnoise(I,'gaussian',0,0.02);
subplot(3,3,2);imshow(J1);
title('加高斯噪声图');
K1=wiener2(J1,[3 3]);
subplot(3,3,3);imshow(K1);
title('维纳滤波后的图像');
I=imread('C:\Users\Administrator\Desktop\lena.jpg');
subplot(3,3,4);imshow(I); title('原始图像');
J2=imnoise(I,'salt & pepper',0.02);
subplot(3,3,5);imshow(J2);
title('加椒盐噪声图');
K1=wiener2(J2,[3 3]);
资源评论
- Abrahamaccess2021-12-10?????
NeverForgetJ
- 粉丝: 1
- 资源: 1
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功