Find the bounding rectangle for the specific array of points

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

Syntax

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

Parameters

points
array< PointF >[]()[]
The collection of points

Return Value

The bounding rectangle for the array of points

See Also