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.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic 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