Click or drag to resize

CvInvokeMinEnclosingCircle Method (PointF)

http://www.emgu.com
Finds the minimal circumscribed circle for 2D point set using iterative algorithm. It returns nonzero if the resultant circle contains all the input points and zero otherwise (i.e. algorithm failed)

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static CircleF MinEnclosingCircle(
	PointF[] points
)

Parameters

points
Type: System.DrawingPointF
Sequence or array of 2D points

Return Value

Type: CircleF
The minimal circumscribed circle for 2D point set
See Also