Approximates contour or a curve using Douglas-Peucker algorithm
Namespace: OpenCvSharp.CPlusPlus
Assembly: OpenCvSharp.CPlusPlus (in OpenCvSharp.CPlusPlus.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void ApproxPolyDP( InputArray curve, OutputArray approxCurve, double epsilon, bool closed )
Parameters
- curve
- Type: OpenCvSharp.CPlusPlusInputArray
The polygon or curve to approximate. Must be 1 x N or N x 1 matrix of type CV_32SC2 or CV_32FC2. - approxCurve
- Type: OpenCvSharp.CPlusPlusOutputArray
The result of the approximation; The type should match the type of the input curve - epsilon
- Type: SystemDouble
Specifies the approximation accuracy. This is the maximum distance between the original curve and its approximation. - closed
- Type: SystemBoolean
The result of the approximation; The type should match the type of the input curve
See Also