Click or drag to resize

CvInvokeConvexHull Method (PointF, Boolean)

http://www.emgu.com
Finds convex hull of 2D point set using Sklansky's algorithm

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static PointF[] ConvexHull(
	PointF[] points,
	bool clockwise = false
)

Parameters

points
Type: System.DrawingPointF
The points to find convex hull from
clockwise (Optional)
Type: SystemBoolean
Orientation flag. If it is true, the output convex hull is oriented clockwise. Otherwise, it is oriented counter-clockwise. The assumed coordinate system has its X axis pointing to the right, and its Y axis pointing upwards.

Return Value

Type: PointF
The convex hull of the points
See Also