Emgu CV Library Documentation
HughLinesBinary Method (rhoResolution, thetaResolution, threshold, minLineWidth, gapBetweenLines)
NamespacesEmgu.CVImage<(Of <(TColor, TDepth>)>)HughLinesBinary(Double, Double, Int32, Double, Double)

www.emgu.com/wiki
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)
Declaration Syntax
C#Visual BasicVisual 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
)
Parameters
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
Return Value

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

Assembly: Emgu.CV (Module: Emgu.CV) Version: 1.4.3249.6313 (1.4.0.0)