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

Tests whether the input contour is convex or not. The contour must be simple, i.e. without self-intersections.

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 static int cvCheckContourConvexity(
	IntPtr contour
)
Public Shared Function cvCheckContourConvexity ( _
	contour As IntPtr _
) As Integer
public:
static int cvCheckContourConvexity(
	IntPtr contour
)

Parameters

contour
IntPtr
Tested contour (sequence or array of points).

Return Value

true if convex

See Also