边界保持平滑滤波方法研究-灰度方差-k近邻平滑
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
..大学毕业设计(论文)
图像降噪中的边界保持平滑滤波方法研究
:
学号:
指导教师:
摘要
当今社会是信息数字化时代,无论是学习,生活都与信息数字紧密相关联,其中数字图像处理在其中占有着举足轻重的地位。21世纪,数字图像处理技术高速发展,并广泛应用于识别领域,医学领域,体育领域等。
平滑滤波是图像处理学的基础.最基础的滤波方式是均值滤波和中值滤波,这两种滤波方式对噪声都有抑制作用而且算法简单,但是导致图像变模糊尤其是边缘变模糊是无可避免的。虽然将滤波器加权后,效果有所改善,但理论是近似的,所以效果仍不明显。
为了改善边缘的模糊,我们发现只要处理好灰度变化显著的边缘,图像就会达到一个很好的效果,要最大程度保持图片的清晰,希望在进行平滑处理的同时,检测出景物的边界,然后对噪声进行处理。
本文用matlab编辑算法实现中值滤波,均值滤波,最小方差滤波,k近邻滤波对噪声的处理,并进行性能的分析和比较。
关键词:matlab;中值滤波;均值滤波;最小方差滤波;k近邻滤波
Abstact
Modern society is digital , whether learning or life is closely associated with digital information, including digital image processing in which occupies a pivotal position .21 century, the rapid development of digital image processing technology widely used in the field of identification, medicalfication, the field of sports.
The smoothing filter is the basis of image processing. The most basic filter is the mean filter and median filter, both filtering noise inhibited and the algorithm is simple, but lead to the edge of the image blurred without avoidable. Although the effect is improving ,the theory is approximate, so the effect is still not clear.
In order to improve the edge blur, we found that handling the gray-scale variation significant edge, the image will reach a good effect, To the maximum extent to maintain the clarity of the picture, while performing smoothing processing, a scene boundary is detected, then, the noise is processing.
In this paper, using matlab algorithm for editing median filtering, mean filtering, minimum variance filtering, k-nearest neighbor filtering noise processing and analysis and comparison of performance.
Keywords: matlab; median filter; mean filter; minimum variance filtering; k nearest neighbor filter
目录
摘要............................................................................... I Abstact ........................................................................... II 第1章:绪论 (1)
1.1 课题背景 (1)
1.2研究目标 (1)
1.3研究容 (1)
1.4论文的组织安排 (2)
第2章平滑滤波的相关知识 (3)
2.1噪声的相关知识 (3)
2.1.1 噪声的定义 (3)
2.1.2在matlab中添加噪声 (4)
2.2彩色图像的分解 (5)
2.3平滑的概念 (6)
2.3.1空间域方法 (7)
2.3.2频率域方法 (7)
2.3.3平滑算法 (7)
2.4峰值信噪比的概念 (8)
第3章均值滤波 (10)
3.1均值滤波的概念及方法 (10)
3.2均值滤波的效果比较 (11)
3.3均值滤波的评价 (13)
第4章中值滤波 (14)
4.1中值滤波的概念和方法 (14)
4.2均值滤波的效果比较 (14)
对加椒盐噪声的图像进行中值滤波得到滤波前后的图像比较,如图10,图11所示: (14)
4.3中值滤波的评价 (16)
第5章灰度最小方差滤波器 (17)
5.1边缘保持类平滑滤波的效果 (17)
5.2灰度最小方差滤波器 (17)
5.2.1灰度最小方差滤波器的概念和方法 (17)
5.2.3灰度最小方差滤波器效果比较 (19)
5.2.4灰度最小方差滤波器的评价 (20)
第6章K近邻平滑滤波器 (21)
6.1 k近邻平滑滤波器的概念和方法 (21)
6.2k近邻平滑滤波器的效果比较 (21)
6.3k近邻平滑滤波器的评价 (24)
结论 (25)
致 (28)
主要参考文献 (29)
附录主要程序源代码 (30)