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

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public static Seq<PointF> ConvexHull(
	PointF[] points,
	MemStorage storage,
	ORIENTATION orientation
)
Visual Basic (Declaration)
Public Shared Function ConvexHull ( _
	points As PointF(), _
	storage As MemStorage, _
	orientation As ORIENTATION _
) As Seq(Of PointF)
Visual C++
public:
static Seq<PointF>^ ConvexHull(
	array<PointF>^ points, 
	MemStorage^ storage, 
	ORIENTATION orientation
)

Parameters

points
Type: array< System.Drawing..::.PointF >[]()[]
The points to find convex hull from
storage
Type: Emgu.CV..::.MemStorage
the storage used by the resulting sequence
orientation
Type: Emgu.CV.CvEnum..::.ORIENTATION
The orientation of the convex hull

Return Value

The convex hull of the points

See Also