Return the contour from its binary tree representation

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

Syntax

C#
public static IntPtr cvContourFromContourTree(
	IntPtr tree,
	IntPtr storage,
	MCvTermCriteria criteria
)
Visual Basic (Declaration)
Public Shared Function cvContourFromContourTree ( _
	tree As IntPtr, _
	storage As IntPtr, _
	criteria As MCvTermCriteria _
) As IntPtr
Visual C++
public:
static IntPtr cvContourFromContourTree(
	IntPtr tree, 
	IntPtr storage, 
	MCvTermCriteria criteria
)

Parameters

tree
Type: System..::.IntPtr
Contour tree
storage
Type: System..::.IntPtr
Container for the reconstructed contour
criteria
Type: Emgu.CV.Structure..::.MCvTermCriteria
Criteria, where to stop reconstruction

Return Value

The contour represented by this contour tree

See Also