Return the contour from its binary tree representation

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

Syntax

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

Parameters

tree
IntPtr
Contour tree
storage
IntPtr
Container for the reconstructed contour
criteria
MCvTermCriteria
Criteria, where to stop reconstruction

Return Value

The contour represented by this contour tree

See Also