Finds all convexity defects of the input contour and returns a sequence of the CvConvexityDefect structures.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public Seq<MCvConvexityDefect> GetConvexityDefacts(
	MemStorage storage,
	ORIENTATION orientation
)
Public Function GetConvexityDefacts ( _
	storage As MemStorage, _
	orientation As ORIENTATION _
) As Seq(Of MCvConvexityDefect)
public:
Seq<MCvConvexityDefect>^ GetConvexityDefacts(
	MemStorage^ storage, 
	ORIENTATION orientation
)

Parameters

storage
MemStorage
Container for output sequence of convexity defects. If it is NULL, contour or hull (in that order) storage is used.
orientation
ORIENTATION
Orientation where the convexity Defacts is returned.

Return Value

The sequence of the CvConvexityDefect structures.

See Also