Enum HoughModes
Variants of a Hough transform
Namespace: OpenCvSharp
Assembly: OpenCvSharp.dll
Syntax
public enum HoughModes
Remarks
Fields
Name | Description |
---|---|
Gradient | basically 21HT, described in @cite Yuen90 |
GradientAlt | variation of HOUGH_GRADIENT to get better accuracy |
MultiScale | multi-scale variant of the classical Hough transform. The lines are encoded the same way as HOUGH_STANDARD. |
Probabilistic | probabilistic Hough transform (more efficient in case if 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, and the matrix must be (the created sequence will be) of the CV_32SC4 type. |
Standard | classical or standard Hough transform. Every line is represented by two floating-point numbers \f$(\rho, \theta)\f$ , where \f$\rho\f$ is a distance between (0,0) point and the line, and \f$\theta\f$ is the angle between x-axis and the normal to the line. Thus, the matrix must be (the created sequence will be) of CV_32FC2 type |