Approximates one curve and returns the approximation result, the result use the same storage as the current sequence

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

Syntax

C#
public Seq<T> ApproxPoly(
	double accuracy
)
Visual Basic (Declaration)
Public Function ApproxPoly ( _
	accuracy As Double _
) As Seq(Of T)
Visual C++
public:
Seq<T>^ ApproxPoly(
	double accuracy
)

Parameters

accuracy
Type: System..::.Double
The desired approximation accuracy

Return Value

The approximated contour

See Also