Approximates one curves and returns the approximation result.

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

Syntax

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

Parameters

accuracy
Type: System..::.Double
The desired approximation accuracy
storage
Type: Emgu.CV..::.MemStorage
The storage the resulting sequence use

Return Value

The approximated contour

See Also