Enum HoughLinesMethod
Specifies available Hough transform variants for line detection.
Namespace: OpenCV.Net
Assembly: OpenCV.Net.dll
Syntax
public enum HoughLinesMethod : int
Fields
Name | Description |
---|---|
MultiScale | Multi-scale variant of the classical Hough transform. The lines are encoded the same way as Standard. |
Probabilistic | Probabilistic Hough transform (more efficient in case the picture contains a few long linear segments). It returns line segments rather than the whole line. Each segment is represented by starting and ending points. |
Standard | Classical or standard Hough transform. Every line is represented by two floating-point numbers rho and theta, where rho is a distance between (0,0) point and the line, and theta is the angle between x-axis and the normal to the line. |