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.2.1.1150 (2.2.1.1150)

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