Find the minimum enclosing circle for the specific array of points

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 CircleF MinEnclosingCircle(
	PointF[] points
)
Public Shared Function MinEnclosingCircle ( _
	points As PointF() _
) As CircleF
public:
static CircleF MinEnclosingCircle(
	array<PointF>^ points
)

Parameters

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

Return Value

The minimum enclosing circle for the array of points

See Also