• 大小: 770B
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-05-17
  • 语言: Matlab
  • 标签: 图像  噪声  

资源简介

数字图像的加噪去噪,高斯噪声、椒盐噪声,均值滤波、中值滤波、维纳滤波。

资源截图

代码片段和文件信息

x=imread(‘01.jpg‘);
I=rgb2gray(x);
subplot(331);imshow(I);title(‘原始图像‘);
J1=imnoise(I‘gaussian‘00.02); 
subplot(332);imshow(J1);title(‘加入高斯噪声后‘);
J2=imnoise(I‘salt & pepper‘0.02);
subplot(333);imshow(J2);title(‘加入椒盐噪声后‘);
K1=filter2(fspecial(‘average‘5)J1)/255;
subplot(334);imshow(K1);title(‘均值滤波去高斯噪声‘);
K2=medfilt2(J1);
s

评论

共有 条评论