Apply Hough 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++ |
[ObsoleteAttribute("Typo, please use HoughLinesBinary instead. Will be removed in the next release")] public LineSegment2D<int>[][] HughLinesBinary( double rhoResolution, double thetaResolution, int threshold, double minLineWidth, double gapBetweenLines )
<ObsoleteAttribute("Typo, please use HoughLinesBinary instead. Will be removed in the next release")> _ Public Function HughLinesBinary ( _ rhoResolution As Double, _ thetaResolution As Double, _ threshold As Integer, _ minLineWidth As Double, _ gapBetweenLines As Double _ ) As LineSegment2D(Of Integer)()()
[ObsoleteAttribute(L"Typo, please use HoughLinesBinary instead. Will be removed in the next release")] public: array<array<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)]