Click or drag to resize

HoughModes Enumeration

http://www.emgu.com
Hough detection type

Namespace:  Emgu.CV.CvEnum
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public enum HoughModes
Members
  Member nameValueDescription
Standard0 Classical or standard Hough transform. Every line is represented by two floating-point numbers (rho, 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. Thus, the matrix must be (the created sequence will be) of CV_32FC2 type
Probabilistic1 Probabilistic Hough transform (more efficient in case if picture contains a few long linear segments). It returns line segments rather than the whole lines. Every segment is represented by starting and ending points, and the matrix must be (the created sequence will be) of CV_32SC4 type
MultiScale2 Multi-scale variant of classical Hough transform. The lines are encoded the same way as in CV_HOUGH_STANDARD
Gradient3 Gradient
GradientAlt4 variation of Gradient to get better accuracy
See Also