Win8 Metro(C#)数字图像处理--2.38Hough变换直线检测
原文: Win8 Metro(C#)数字图像处理--2.38Hough变换直线检测 [函数名称] Hough变换直线检测HoughLineDetect(WriteableBitmapsrc,intthreshould) [算法说明] Hough变换是数字图像处理中一种常用的几何形状识别方法,它可以识别直线,圆,椭圆,弧线等 等几何形状,其基本原理是利用图像二维空间和Hough参数空间的点-线对偶性,把图像空间中的形 状检测问题转换到Hough的参数空间中去,最终以寻找参数空间中的峰值问题,得到形状检测的最优 结果。 /// <summary> /// Hough transform of line detectting process. /// </summary> /// <param name="src">The source image.</param> /// <param name="threshould">The threshould to adjust the number of lines.</pa...