[This is preliminary documentation and is subject to change.]

Find contours

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public Contour<Point> FindContours(
	CHAIN_APPROX_METHOD method,
	RETR_TYPE type
)
Public Function FindContours ( _
	method As CHAIN_APPROX_METHOD, _
	type As RETR_TYPE _
) As Contour(Of Point)
public:
Contour<Point>^ FindContours(
	CHAIN_APPROX_METHOD method, 
	RETR_TYPE type
)

Parameters

method
CHAIN_APPROX_METHOD
The type of approximation method
type
RETR_TYPE
The retrival type

Return Value

Contour if there is any; null if no contour is found

See Also