Apply Hugh transform to find line segments.
The current image must be a binary image (eg. the edges as a result of the Canny edge detector)

C# | Visual Basic | Visual C++ |
public LineSegment2D<int>[][] HughLinesBinary( double rhoResolution, double thetaResolution, int threshold, double minLineWidth, double gapBetweenLines )

- rhoResolution (Double)
- Distance resolution in pixel-related units.
- thetaResolution (Double)
- Angle resolution measured in radians
- threshold (Int32)
- A line is returned by the function if the corresponding accumulator value is greater than threshold
- minLineWidth (Double)
- Minimum width of a line
- gapBetweenLines (Double)
- Minimum gap between lines

[Missing <returns> documentation for M:Emgu.CV.Image`2.HughLinesBinary(System.Double,System.Double,System.Int32,System.Double,System.Double)]