文档介绍:基于VC的图像边缘检测算法的研究与比较
目录
摘要 III
Abstract IV
第一章绪论 - 1 -
- 1 -
- 1 -
- 1 -
- 2 -
第二章图像边缘检测 - 3 -
- 3 -
- 3 -
- 3 -
- 4 -
- 5 -
- 5 -
- 5 -
- 5 -
- 6 -
Roberts边缘检测算子 - 6 -
Sobel边缘检测算子 - 7 -
Prewitt边缘检测算子 - 8 -
第三章 Visual C++图像编程 - 10 -
++实现图像处理编程的原因 - 10 -
VC++的特点 - 10 -
VC++的组成 - 11 -
VC与matlab的比较 - 12 -
第四章边缘检测算子的编程实现 - 14 -
- 14 -
Roberts算子程序及结果 - 14 -
Sobel算子程序及结果 - 17 -
Prewitt算子程序及结果 - 23 -
- 27 -
第五章边缘检测技术的发展及应用 - 29 -
- 29 -
- 29 -
- 29 -
- 30 -
- 30 -
- 31 -
结语 - 33 -
参考文献 - 34 -
致谢 - 35 -
基于VC的图像边缘检测算法的研究与比较
摘要
图像的边缘是图像最基本的特征,它是灰度不连续的结果。图像分析和理解的第一步是边缘检测,因此边缘检测在图像处理中有着重要的作用。图像边缘检测大幅度地减少了数据量,并且剔除了可以认为不相关的信息,保留了图像重要的结构属性。
本文介绍了三种经典的图像边缘检测算子,并且运用强大的VC软件通过一个图像边缘检测的例子比较了它们的检测效果,分析了它们各自的特点,对学习边缘检测和具体工程应用具有很好的参考价值。
关键词: 图像处理,边缘检测, 算子,比较研究,VC
Comparison And Analysis For Image Edge Detection Algorithms Based On VC
Abstract
Edge is the most basic feature of the image, it is the result of discontinuous gray. The first step in image analysis and understanding is edge detection, so edge detection plays an important role in image processing. Image edge detection significantly reduces the amount of data and removes irrelevant information,retains the important structural properties of images.
This article describes three types of classical edge detection operators, and the use the powerful software called VC to do the edge detection through parison of examples of the effect of their detection, analysis the characteristics,this is good reference value for their learning edge detection and application of specific projects.
Key Words: Image processing ,Edge detection ,Operator ,Comparative Study ,VC
第一章绪论