Table of Contents

Enum HoughModes

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

Variants of a Hough transform

[SuppressMessage("Microsoft.Design", "CA1717: Only FlagsAttribute enums should have plural names")]
public enum HoughModes

Fields

Gradient = 3

basically 21HT, described in @cite Yuen90

GradientAlt = 4

variation of HOUGH_GRADIENT to get better accuracy

MultiScale = 2

multi-scale variant of the classical Hough transform. The lines are encoded the same way as HOUGH_STANDARD.

Probabilistic = 1

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 = 0

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

Remarks