CvInvokeIsContourConvex Method |
http://www.emgu.com
The function tests whether the input contour is convex or not. The contour must be simple, that is, without self-intersections. Otherwise, the function output is undefined.
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax public static bool IsContourConvex(
IInputArray contour
)
Public Shared Function IsContourConvex (
contour As IInputArray
) As Boolean
public:
static bool IsContourConvex(
IInputArray^ contour
)
static member IsContourConvex :
contour : IInputArray -> bool
Parameters
- contour
- Type: Emgu.CVIInputArray
Input vector of 2D points
Return Value
Type:
Booleantrue if input is convex
See Also