Table of Contents

Enum HoughModes

Namespace
Emgu.CV.CvEnum
Assembly
Emgu.CV.dll

Hough detection type

public enum HoughModes

Fields

Gradient = 3

Gradient

GradientAlt = 4

variation of Gradient to get better accuracy

MultiScale = 2

Multi-scale variant of classical Hough transform. The lines are encoded the same way as in CV_HOUGH_STANDARD

Probabilistic = 1

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

Standard = 0

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