Find the bounding rectangle for the specific array of points

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

Syntax

C#
public static MCvBox2D MinAreaRect(
	PointF[] points
)
Visual Basic (Declaration)
Public Shared Function MinAreaRect ( _
	points As PointF() _
) As MCvBox2D
Visual C++
public:
static MCvBox2D MinAreaRect(
	array<PointF>^ points
)

Parameters

points
Type: array< System.Drawing..::.PointF >[]()[]
The collection of points

Return Value

The bounding rectangle for the array of points

See Also