Finds lines in binary image using Hough transform.
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public CvLineSegmentPoint[] HoughLinesProbabilistic( double rho, double theta, int threshold )
Parameters
- rho
- Type: SystemDouble
Distance resolution in pixel-related units. - theta
- Type: SystemDouble
Angle resolution measured in radians. - threshold
- Type: SystemInt32
Threshold parameter. A line is returned by the function if the corresponding accumulator value is greater than threshold.
Return Value
Type: CvLineSegmentPoint[Missing <returns> documentation for "M:OpenCvSharp.CvArr.HoughLinesProbabilistic(System.Double,System.Double,System.Int32)"]
See Also