- 6
- 0
- 约2.14千字
- 约 7页
- 2017-09-20 发布于江苏
- 举报
图像平滑滤波在MATLAB上的实现
本课程设计在MATLAB上实现的程序和结果
I=imread(b.bmp);
v=0.5*ones(size(I));
I1=imnoise(I,localvar,v);
I2=imnoise(I,salt pepper,0.02);
I3=imnoise(I,speckle,0.02);
figure;
subplot(221);
hold on;
title(原图像);
imshow(I);
hold off;
subplot(222);
hold on;
title(受高斯噪声污染的图像);
imshow(I1);
hold off;
subplot(223);
hold on;
title(受椒盐噪声污染的图像);
imshow(I2);
hold off;
subplot(224);
hold on;
title(受乘性噪声污染的图像);
imshow(I3);
hold off;
h=ones(3,3)/9;
J1=imfilter(I1,h);
J2=imfilter(I2,h);
J3=imfilter(I3,h);
figure;
subplot(221);
hold on;
title(原图像);
imshow(I);
hold off;
subplot(222);
hold on;
title(对有高斯噪声的3*3邻域平均后的图像);
imshow(J1);
hold off;
subplot(223);
hold on;
title(对有椒盐噪声的3*3邻域平均后的图像);
imshow(J2);
hold off;
subplot(224);
hold on;
title(对有乘性噪声的3*3邻域平均后的图像);
imshow(J3);
hold off;
h1=ones(5,5)/25;
K1=imfilter(I1,h1);
K2=imfilter(I2,h1);
K3=imfilter(I3,h1);
figure;
subplot(221);
hold on;
title(原图像);
imshow(I);
hold off;
subplot(222);
hold on;
title(对有高斯噪声的5*5邻域平均后的图像);
imshow(K1);
hold off;
subplot(223);
hold on;
title(对有椒盐噪声的5*5邻域平均后的图像);
imshow(K2);
hold off;
subplot(224);
hold on;
title(对有乘性噪声的5*5邻域平均后的图像);
imshow(K3);
hold off;
L1=medfilt2(I1,[5,5]);
L2=medfilt2(I2,[5,5]);
L3=medfilt2(I3,[5,5]);
figure;
subplot(221);
hold on;
title(原图像);
imshow(I);
hold off;
subplot(222);
hold on;
title(高斯噪声5*5中值滤波后的图像);
imshow(L1);
hold off;
subplot(223);
hold on;
title(椒盐噪声5*5中值滤波后的图像);
imshow(L2);
hold off;
subplot(224);
hold on;
title(乘性噪声的5*5中值滤波后的图像);
imshow(L3);
hold off;
[f1,f2]=freqspace(25,meshgrid);
Hd=zeros(25,25);
d=sqrt(f1.^2+f2.^2)0.5;
Hd(d)=1;
h=fsamp2(Hd);
figure;
freqz2(h,[64,64]);
I=imread(b.bmp);
v=0.5*ones(size(I));
I1=imnoise(I,localvar,v);
I2=imnoise(I,salt pepper,0.02);
I3=imnoise(I,speckle,0.02);
J1=imfilter(I1,h,replicate);
J2=imfilter(I2,h,replicate);
J3=imfilter(I3,h,replicate);
figure;
subplot(221);
hold on;
title(原图像);
imshow(I);
hold off;
subplot(222);
hold on;
title(高斯噪声频域滤波后图像);
imshow(J1);
hold off;
subplot(223);
hold on;
title(椒盐噪声频域滤波后图像);
imshow(J2);
hold of
您可能关注的文档
- 七充填系统检测仪表及自动控制.doc
- 建材场信息化平台建设方案.doc
- 播种机械与秸杆覆盖对玉米衰老生理及产量影响.doc
- 药科大学药物生物信息学课程复习题.doc
- 灯罩注塑模设计(论文).doc
- 初中应用物理知识典型试题9.doc
- 全国高考宁夏区试题答案(文综).doc
- 灵溪中学度八级寒假学情调查科学试卷.doc
- 海船场地设施设备标准.doc
- 全国计算机等级考试二级辅导讲义().doc
- 基于项目驱动的农业信息化课程设计与实施.docx
- 2026年凉州区洪祥镇公开选聘专业化管理的大学生村文书备考题库含答案详解.docx
- 2026年凉州区洪祥镇公开选聘专业化管理的大学生村文书备考题库及答案详解参考.docx
- 2026年凉州区洪祥镇公开选聘专业化管理的大学生村文书备考题库及完整答案详解一套.docx
- 2026年凉州区洪祥镇公开选聘专业化管理的大学生村文书备考题库及答案详解1套.docx
- 2025至2030特色旅游行业调研及市场前景预测评估报告.docx
- 2026年凉州区洪祥镇公开选聘专业化管理的大学生村文书备考题库及完整答案详解1套.docx
- 基于无人机测绘的建筑工程三维建模技术探讨.docx
- 2026年凌云航空招聘操作工备考题库及一套参考答案详解.docx
- 基于无人机测绘的建筑工程施工进度监测方法研究.docx
原创力文档

文档评论(0)