资源简介

matlab的图像去噪实验,附源码和实验所用图片以及实验报告,可以直接拿来用,也可以参考啊,希望会对你有用,如需帮助可以私信

资源截图

代码片段和文件信息

clc
clear
I=imread(‘C:\Users\Administrator\Desktop\matlab代码\image\5.jpg‘); %读原图
thresh=graythresh(I);
I1=rgb2gray(I);%转化为灰度图像
I2=imnoise(I1‘salt & pepper‘0.1);         %加均值为0,方差为0.02的椒盐噪声
I3=imnoise(I1‘gaussian‘00.1); 
I4=imnoise(I1‘speckle‘0.1);
% subplot(241)imshow(I);
% title(‘原图像‘);
subplot(241)imshow(I1);
title(‘原图像‘);
subplot(242)imshow(I2);                  %显示被噪声污染图像
title(‘加入椒盐噪声‘);       
subplot(243)imshow(I3);                  
title(‘加入高斯噪声‘);
subplot(244)imshow(I4);                 
title(‘加入乘性噪声‘);
subplot(245)imhist(I1);                  %灰度直方图
title(‘灰度图像‘);
subplot(246)imhist(I2);                 
title(‘椒盐噪声直方图‘);       
subplot(247)imhist(I3);                  
title(‘高斯噪声直方图‘);
subplot(248)imhist(I4);           

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       32534  2017-05-04 15:58  image\5.jpg
     文件         937  2017-05-05 16:38  源代码\add_zaosheng.m
     文件        1218  2017-05-05 17:07  源代码\qu_cheng_xing.m
     文件        1221  2017-05-06 12:03  源代码\qu_gao_si.m
     文件        1234  2017-05-05 17:07  源代码\qu_jiao_yan.m
     文件        4008  2017-05-06 12:22  源代码\ssim.m
     文件     1517056  2018-01-19 14:39  实验报告.doc

评论

共有 条评论