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.0.1.0 (2.0.1.0)

Syntax

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

Parameters

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

Return Value

The sequence of the CvConvexityDefect structures.

See Also