阿斯顿噶是个阿斯顿发大厦

来源:互联网 发布:ubuntu 列表显示 编辑:程序博客网 时间:2024/05/08 05:18
本系列文章由@浅墨_毛星云 出品,转载请注明出处。  
文章链接: http://blog.csdn.net/poem_qianmo/article/details/26977557
作者:毛星云(浅墨)    微博:http://weibo.com/u/1723155442
知乎:http://www.zhihu.com/people/mao-xing-yun
邮箱: happylifemxy@163.com
写作当前博文时配套使用的OpenCV版本:
2.4.9




 本篇文章中,我们一起探讨了OpenCV中霍夫变换相关的知识点,以及了解了OpenCV中实现霍夫线变换的HoughLines、HoughLinesP函数的使用方法,实现霍夫圆变换的HoughCircles函数的使用方法。此博文一共有四个配套的简短的示例程序,其详细注释过的代码都在文中贴出,且文章最后提供了综合示例程序的下载。
先尝鲜一下其中一个示例程序的运行截图:








一、引言
 
在图像处理和计算机视觉领域中,如何从当前的图像中提取所需要的特征信息是图像识别的关键所在。在许多应用场合中需要快速准确地检测出直线或者圆。其中一种非常有效的解决问题的方法是霍夫(Hough)变换,其为图像处理中从图像中识别几何形状的基本方法之一,应用很广泛,也有很多改进算法。最基本的霍夫变换是从黑白图像中检测直线(线段)。这篇文章就将介绍OpenCV中霍夫变换的使用方法和相关知识。
 
 


二、霍夫变换概述


霍夫变换(Hough Transform)是图像处理中的一种特征提取技术,该过程在一个参数空间中通过计算累计结果的局部最大值得到一个符合该特定形状的集合作为霍夫变换结果。
霍夫变换于1962年由PaulHough首次提出,最初的Hough变换是设计用来检测直线和曲线,起初的方法要求知道物体边界线的解析方程,但不需要有关区域位置的先验知识。这种方法的一个突出优点是分割结果的Robustness,即对数据的不完全或噪声不是非常敏感。然而,要获得描述边界的解析表达常常是不可能的。 后于1972年由Richard Duda & Peter Hart推广使用,经典霍夫变换用来检测图像中的直线,后来霍夫变换扩展到任意形状物体的识别,多为圆和椭圆。霍夫变换运用两个坐标空间之间的变换将在一个空间中具有相同形状的曲线或直线映射到另一个坐标空间的一个点上形成峰值,从而把检测任意形状的问题转化为统计峰值问题。
 
霍夫变换在OpenCV中分为霍夫线变换和霍夫圆变换两种,我们下面将分别进行介绍。
 


 


三、霍夫线变换
 


3.1  OpenCV中的霍夫线变换
 


我们知道,霍夫线变换是一种用来寻找直线的方法. 在使用霍夫线变换之前, 首先要对图像进行边缘检测的处理,也即霍夫线变换的直接输入只能是边缘二值图像.
OpenCV支持三种不同的霍夫线变换,它们分别是:标准霍夫变换(Standard Hough Transform,SHT)和多尺度霍夫变换(Multi-Scale Hough Transform,MSHT)累计概率霍夫变换(Progressive Probabilistic Hough Transform ,PPHT)。
 
其中,多尺度霍夫变换(MSHT)为经典霍夫变换(SHT)在多尺度下的一个变种。累计概率霍夫变换(PPHT)算法是标准霍夫变换(SHT)算法的一个改进,它在一定的范围内进行霍夫变换,计算单独线段的方向以及范围,从而减少计算量,缩短计算时间。之所以称PPHT为“概率”的,是因为并不将累加器平面内的所有可能的点累加,而只是累加其中的一部分,该想法是如果峰值如果足够高,只用一小部分时间去寻找它就够了。这样猜想的话,可以实质性地减少计算时间。
 
在OpenCV中,我们可以用HoughLines函数来调用标准霍夫变换SHT和多尺度霍夫变换MSHT。
而HoughLinesP函数用于调用累计概率霍夫变换PPHT。累计概率霍夫变换执行效率很高,所有相比于HoughLines函数,我们更倾向于使用HoughLinesP函数。
 
总结一下,OpenCV中的霍夫线变换有如下三种:


<1>标准霍夫变换(StandardHough Transform,SHT),由HoughLines函数调用。
<2>多尺度霍夫变换(Multi-ScaleHough Transform,MSHT),由HoughLines函数调用。
<3>累计概率霍夫变换(ProgressiveProbabilistic Hough Transform,PPHT),由HoughLinesP函数调用。http://bbs.hers.com.cn/home.php?mod=space&uid=1907040&do=album&picid=2352588
http://club.news.sohu.com/bagua/thread/2eqpr2sbx3f
http://club.news.sohu.com/zz0233/thread/2eqqvxetezd
http://club.news.sohu.com/bagua/thread/2eqptfdibxx
http://club.news.sohu.com/bagua/thread/2eqqyn1mw2c
http://club.news.sohu.com/bagua/thread/2eqpv5igprk
http://club.news.sohu.com/bagua/thread/2eqqzvsi5h9
http://club.news.sohu.com/bagua/thread/2eqr2ucxc6n
http://club.news.sohu.com/bagua/thread/2eqr533u5a9
http://club.news.sohu.com/bagua/thread/2eqr65lrq6s
http://club.news.sohu.com/bagua/thread/2eqr78fyl4g
http://club.news.sohu.com/bagua/thread/2eqrm1gmnsh
http://club.news.sohu.com/bagua/thread/2eqrnlimkk4
http://club.news.sohu.com/zz0233/thread/2eqrw2g8zs7
http://wallinside.com/post-17301514-.html
http://wallinside.com/post-17301591-.html
http://wallinside.com/post-17301656-.html
http://wallinside.com/post-17301687-.html
http://wallinside.com/post-17301718-.html
http://wallinside.com/post-17301758-.html
http://wallinside.com/post-17301797-.html
http://wallinside.com/post-17301828-.html
http://wallinside.com/post-17301853-.html
http://wallinside.com/post-17301885-.html
http://wallinside.com/post-17301938-.html
http://wallinside.com/post-17301972-.html
http://wallinside.com/post-17302012-.html
http://wallinside.com/post-17302064-.html
http://wallinside.com/post-17302095-.html
http://wallinside.com/post-17302134-.html
http://wallinside.com/post-17302169-.html
http://wallinside.com/post-17302203-.html
http://wallinside.com/post-17302239-.html
http://wallinside.com/post-17302280-.html
http://wallinside.com/post-17302313-.html
http://wallinside.com/post-17302354-.html
http://wallinside.com/post-17302389-.html
http://wallinside.com/post-17302422-.html
http://wallinside.com/post-17302451-.html
http://wallinside.com/post-17302485-.html
http://wallinside.com/post-17302529-.html
http://wallinside.com/post-17302567-.html
http://wallinside.com/post-17302609-.html
http://wallinside.com/post-17302651-.html
http://wallinside.com/post-17302681-.html
http://wallinside.com/post-17302721-.html
http://wallinside.com/post-17302748-.html
http://wallinside.com/post-17302831-.html
http://wallinside.com/post-17302840-.html
http://wallinside.com/post-17302879-.html
http://wallinside.com/post-17302913-.html
http://wallinside.com/post-17302943-.html
http://wallinside.com/post-17302968-.html
http://wallinside.com/post-17303002-.html
http://wallinside.com/post-17303023-.html
http://wallinside.com/post-17303050-.html
http://wallinside.com/post-17303075-.html
http://wallinside.com/post-17303097-.html
http://wallinside.com/post-17303123-.html
http://wallinside.com/post-17303153-.html
http://wallinside.com/post-17303175-.html
http://wallinside.com/post-17303213-.html
http://wallinside.com/post-17303237-.html
http://wallinside.com/post-17303275-.html
http://wallinside.com/post-17303306-.html
http://wallinside.com/post-17303350-.html
http://wallinside.com/post-17303380-.html
http://wallinside.com/post-17303408-.html
http://wallinside.com/post-17303452-.html
http://wallinside.com/post-17303499-.html
http://wallinside.com/post-17303529-.html
http://wallinside.com/post-17303584-.html
http://wallinside.com/post-17303616-.html
http://wallinside.com/post-17303666-.html
http://wallinside.com/post-17303698-.html
http://wallinside.com/post-17303732-.html
http://wallinside.com/post-17303763-.html
http://wallinside.com/post-17303815-.html
http://wallinside.com/post-17303857-.html
http://wallinside.com/post-17303926-.html
http://wallinside.com/post-17303961-.html
http://wallinside.com/post-17304012-.html
http://wallinside.com/post-17304638-.html
http://wallinside.com/post-17304702-.html
http://wallinside.com/post-17304759-.html
http://wallinside.com/post-17304819-.html
http://wallinside.com/post-17304856-.html
http://wallinside.com/post-17304894-.html
http://wallinside.com/post-17304972-.html
http://wallinside.com/post-17304999-.html
http://wallinside.com/post-17305031-.html
http://wallinside.com/post-17305080-.html
http://wallinside.com/post-17305107-.html
http://wallinside.com/post-17305137-.html
http://wallinside.com/post-17305195-.html
http://wallinside.com/post-17305235-.html
http://wallinside.com/post-17305284-.html
http://wallinside.com/post-17305325-.html
http://wallinside.com/post-17305361-.html
http://wallinside.com/post-17305403-.html
http://wallinside.com/post-17305449-.html
http://wallinside.com/post-17305496-.html
http://wallinside.com/post-17305538-.html
http://wallinside.com/post-17305573-.html
http://wallinside.com/post-17305613-.html
http://wallinside.com/post-17305658-.html
http://wallinside.com/post-17305691-.html
http://wallinside.com/post-17305726-.html
http://wallinside.com/post-17305829-.html
http://wallinside.com/post-17305875-.html
http://wallinside.com/post-17305917-.html
http://wallinside.com/post-17305945-.html
http://wallinside.com/post-17305968-.html
http://wallinside.com/post-17305993-.html
http://wallinside.com/post-17306030-.html
http://wallinside.com/post-17306067-.html
http://wallinside.com/post-17306125-.html
http://wallinside.com/post-17306175-.html
http://wallinside.com/post-17306218-.html
http://wallinside.com/post-17306267-.html
http://wallinside.com/post-17306320-.html
http://wallinside.com/post-17306373-.html
http://wallinside.com/post-17306411-.html
http://wallinside.com/post-17306477-.html
http://wallinside.com/post-17306527-.html
http://wallinside.com/post-17306565-.html
http://wallinside.com/post-17306614-.html
http://wallinside.com/post-17306663-.html
http://wallinside.com/post-17306720-.html
http://wallinside.com/post-17306816-.html
http://wallinside.com/post-17306893-.html
http://wallinside.com/post-17306931-.html
http://wallinside.com/post-17306982-.html
http://wallinside.com/post-17307029-.html
http://wallinside.com/post-17307080-.html
http://wallinside.com/post-17307109-.html
http://wallinside.com/post-17307153-.html
http://wallinside.com/post-17307213-.html
http://wallinside.com/post-17307237-.html
http://wallinside.com/post-17307269-.html
http://wallinside.com/post-17307294-.html
http://wallinside.com/post-17307318-.html
http://wallinside.com/post-17307372-.html
http://wallinside.com/post-17307399-.html
http://wallinside.com/post-17307427-.html
http://wallinside.com/post-17307459-.html
http://wallinside.com/post-17307500-.html
http://wallinside.com/post-17307563-.html
http://wallinside.com/post-17307610-.html
http://wallinside.com/post-17307676-.html
http://wallinside.com/post-17307720-.html
http://wallinside.com/post-17307762-.html
http://wallinside.com/post-17307813-.html
http://wallinside.com/post-17307853-.html
http://wallinside.com/post-17307894-.html
http://wallinside.com/post-17307931-.html
http://wallinside.com/post-17308011-.html
http://wallinside.com/post-17308090-.html
http://wallinside.com/post-17308304-.html
http://wallinside.com/post-17308354-.html
http://wallinside.com/post-17308398-.html
http://wallinside.com/post-17308568-.html
http://wallinside.com/post-17308899-.html
http://wallinside.com/post-17308903-.html
http://wallinside.com/post-17308959-.html
http://wallinside.com/post-17309010-.html
http://wallinside.com/post-17309090-.html
http://wallinside.com/post-17309149-.html
http://wallinside.com/post-17309220-.html
http://wallinside.com/post-17309271-.html
http://wallinside.com/post-17309316-.html
http://wallinside.com/post-17309365-.html
http://wallinside.com/post-17309420-.html
http://wallinside.com/post-17309487-.html
http://wallinside.com/post-17309551-.html
http://wallinside.com/post-17309584-.html
http://wallinside.com/post-17309630-.html
http://wallinside.com/post-17309677-.html
http://wallinside.com/post-17309948-.html
http://wallinside.com/post-17310436-.html
http://wallinside.com/post-17310523-.html
http://wallinside.com/post-17310596-.html
http://wallinside.com/post-17310629-.html
http://wallinside.com/post-17310663-.html
http://wallinside.com/post-17310713-.html
http://wallinside.com/post-17310751-.html
http://wallinside.com/post-17310791-.html
http://wallinside.com/post-17310825-.html
http://wallinside.com/post-17310855-.html
http://wallinside.com/post-17310882-.html
http://wallinside.com/post-17310917-.html
http://wallinside.com/post-17310961-.html
http://wallinside.com/post-17311052-.html
http://wallinside.com/post-17311089-.html
http://wallinside.com/post-17311142-.html
http://wallinside.com/post-17311183-.html
http://wallinside.com/post-17311204-.html
http://wallinside.com/post-17311224-.html
http://wallinside.com/post-17311254-.html
http://wallinside.com/post-17311287-.html
http://wallinside.com/post-17311341-.html
http://wallinside.com/post-17311385-.html
http://wallinside.com/post-17311417-.html
0 0
原创粉丝点击