Click or drag to resize

CvExtensionsHoughLinesProbabilisticEx Method

[Missing <summary> documentation for "M:OpenCvSharp.Extensions.CvExtensions.HoughLinesProbabilisticEx(OpenCvSharp.Mat,System.Double,System.Double,System.Int32,System.Double,System.Double,System.Double,System.Double)"]

Namespace:  OpenCvSharp.Extensions
Assembly:  OpenCvSharp.Extensions (in OpenCvSharp.Extensions.dll) Version: 1.0.0
Syntax
public static LineSegmentPoint[] HoughLinesProbabilisticEx(
	this Mat img,
	double rho,
	double theta,
	int threshold,
	double minLineLength,
	double maxLineGap,
	double thetaMin = 0,
	double thetaMax = 3.14159265358979
)

Parameters

img
Type: OpenCvSharpMat

[Missing <param name="img"/> documentation for "M:OpenCvSharp.Extensions.CvExtensions.HoughLinesProbabilisticEx(OpenCvSharp.Mat,System.Double,System.Double,System.Int32,System.Double,System.Double,System.Double,System.Double)"]

rho
Type: SystemDouble

[Missing <param name="rho"/> documentation for "M:OpenCvSharp.Extensions.CvExtensions.HoughLinesProbabilisticEx(OpenCvSharp.Mat,System.Double,System.Double,System.Int32,System.Double,System.Double,System.Double,System.Double)"]

theta
Type: SystemDouble

[Missing <param name="theta"/> documentation for "M:OpenCvSharp.Extensions.CvExtensions.HoughLinesProbabilisticEx(OpenCvSharp.Mat,System.Double,System.Double,System.Int32,System.Double,System.Double,System.Double,System.Double)"]

threshold
Type: SystemInt32

[Missing <param name="threshold"/> documentation for "M:OpenCvSharp.Extensions.CvExtensions.HoughLinesProbabilisticEx(OpenCvSharp.Mat,System.Double,System.Double,System.Int32,System.Double,System.Double,System.Double,System.Double)"]

minLineLength
Type: SystemDouble

[Missing <param name="minLineLength"/> documentation for "M:OpenCvSharp.Extensions.CvExtensions.HoughLinesProbabilisticEx(OpenCvSharp.Mat,System.Double,System.Double,System.Int32,System.Double,System.Double,System.Double,System.Double)"]

maxLineGap
Type: SystemDouble

[Missing <param name="maxLineGap"/> documentation for "M:OpenCvSharp.Extensions.CvExtensions.HoughLinesProbabilisticEx(OpenCvSharp.Mat,System.Double,System.Double,System.Int32,System.Double,System.Double,System.Double,System.Double)"]

thetaMin (Optional)
Type: SystemDouble

[Missing <param name="thetaMin"/> documentation for "M:OpenCvSharp.Extensions.CvExtensions.HoughLinesProbabilisticEx(OpenCvSharp.Mat,System.Double,System.Double,System.Int32,System.Double,System.Double,System.Double,System.Double)"]

thetaMax (Optional)
Type: SystemDouble

[Missing <param name="thetaMax"/> documentation for "M:OpenCvSharp.Extensions.CvExtensions.HoughLinesProbabilisticEx(OpenCvSharp.Mat,System.Double,System.Double,System.Int32,System.Double,System.Double,System.Double,System.Double)"]

Return Value

Type: LineSegmentPoint

[Missing <returns> documentation for "M:OpenCvSharp.Extensions.CvExtensions.HoughLinesProbabilisticEx(OpenCvSharp.Mat,System.Double,System.Double,System.Int32,System.Double,System.Double,System.Double,System.Double)"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Mat. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also