Finds convex hull of 2D point set using Sklansky's algorithm

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 Seq<PointF> ConvexHull(
	PointF[] points,
	MemStorage storage,
	ORIENTATION orientation
)
Public Shared Function ConvexHull ( _
	points As PointF(), _
	storage As MemStorage, _
	orientation As ORIENTATION _
) As Seq(Of PointF)
public:
static Seq<PointF>^ ConvexHull(
	array<PointF>^ points, 
	MemStorage^ storage, 
	ORIENTATION orientation
)

Parameters

points
array<PointF>[]()[][]
The points to find convex hull from
storage
MemStorage
the storage used by the resulting sequence
orientation
ORIENTATION
The orientation of the convex hull

Return Value

The convex hull of the points

See Also