搜索资源列表
houghGUI
- 一个交互式程序,利用Hough变换检测圆。允许人工选择圆半径。
gaijindeHoughyundetection
- 一种改进的Hough变换来提取圆心和半径.速度很快效果也不错.要用真彩色位图.
CircledetectionbasedonrandomHoughtransform
- 基于随机Hough变换的圆检测方法,可检测不同位置、半径的圆。
hough
- 图像处理中经常需要检测圆形状的物体,该程序用霍夫变换可以检测圆的圆心和半径。
hough_circle
- 通过hough变换求图像中的圆的参数(圆心坐标和半径)
hough圆变换并显示圆心、半径
- 利用VC++6.0和OpenCV1.0进行图像Hough圆变换,在视图中显示检测到的圆心、半径值。
Hough
- hough变换检测圆的处理,包括对圆心的检测,半径的检测,算法巧妙。-hough transform circle detection, including detection of the center of a circle, the radius of detection, the algorithm skillfully.
circles
- 这段程序利用 Hough 变换在灰度图像中找圆 ,并可进而给出圆心和半径-The function cvHoughCircles finds circles in grayscale image using some modification of Hough transform.
An_Improved_Hough_Transform_Method_for_Circle_Segm
- 本文提出了一种基于方向可变滤波器的改进Hough变换方法。该方法首先利用方向可变滤波器检测出图像边缘以及边缘的方向特性,然后基于边缘点及其方向,通过改进的Hough变换得到圆心、半径。最后,将该算法应用于球类对象分割并得到较好的结果。-In this paper, a variable filter based on the direction of improving the method of Hough transform. The direction of the first to us
hough
- 根据园的方程(x-a)×(x-a)+(y-b)×(y-b)=R×R,将参数空间增加到a,b,R三维空间. 常用的hough变换计算量太大,然而随机hough变换虽然计算量相对小点,但是准确率没有前者高.现在使用 一种改进的方法:提取边缘图像,然后边缘跟踪,在边缘曲线上进行hough变换检测圆.-According to Park' s equation (x-a) × (x-a)+ (y-b) × (y-b) = R × R, the parameter space to a,
Hough
- 利用Hough变换实现半径未知的圆形物体的检测-Use Hough transform to achieve a circular radius of an unknown object detection
circle-detection
- 采用hough变换对半径未知的圆进行检测-Using hough transform to detect the circle radius of the unknown
CircularHough
- 圆检测程序 基于Hough变化的圆检测程序,包括原点坐标和半径大小-Circult
Hough_circle
- 基于标准Hough变换的圆检测程序,指定半径,在一幅二值图像中进行标准的hough变换-Circle Detection via Standard Hough Transform Find circles with specific radius in a binary image via Standard Hough Transform.
houghtraslation
- 这是一个基于opencv利用霍夫变换检测圆的程序,计算出圆的半径后,在原图上可以画出圆的轨迹-This is based on the use of Hough transform detection opencv program to calculate the radius of the circle, the circle can be drawn on in the artwork track
hough-detect-circle
- 基于hough变换检测圆,用于图像处理,有循环,打印出半径和圆心-base on hough detect circle
hough
- 利用hough变换识别一定半径内的圆,非常好用,简单易懂-Identification of Hough transform circle
hough
- hough变换提取图像中圆的半径和圆心坐标-hough transform to extract the radius and center
hough.tar
- Hough算法的matlab实现,可以检测出图像中存在的不同半径的圆-Hough algorithm matlab realize, can detect the presence of different radii of the circles in the image
finding-circle-with-HOUGH-method-
- HOUHG 变换检测圆坐标源代码。,确定一个圆需要:X坐标,Y坐标,半径三个未知量。 做一个三维空间的HOUGH域,以这三个未知量作为三个轴,现在按照一定步长进行三重循环,在最内层循环是这样的,X,Y 确定,以不同的半径进行搜索,如果X,Y刚好就是实际图像的X,Y处,半径又搜索到实际真实的半径,那么是 不是在这个三维空间。-C++ code for finding circle with HOUGH method