Fit an ellipse to the points collection

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

Syntax

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

Parameters

points
Type: array< System.Drawing..::.PointF >[]()[]
The points to be fitted

Return Value

An ellipse

See Also