Click or drag to resize

MatConvexHullPoints Method

Computes convex hull for a set of 2D points.

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public Point[] ConvexHullPoints(
	bool clockwise = false
)

Parameters

clockwise (Optional)
Type: SystemBoolean
If true, the output convex hull will be oriented clockwise, otherwise it will be oriented counter-clockwise. Here, the usual screen coordinate system is assumed - the origin is at the top-left corner, x axis is oriented to the right, and y axis is oriented downwards.

Return Value

Type: Point
The output convex hull. It is a vector of points that form the hull (must have the same type as the input points).
See Also