Click or drag to resize

Cv2ApproxPolyDP Method (IEnumerablePoint, Double, Boolean)

Approximates contour or a curve using Douglas-Peucker algorithm

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static Point[] ApproxPolyDP(
	IEnumerable<Point> curve,
	double epsilon,
	bool closed
)

Parameters

curve
Type: System.Collections.GenericIEnumerablePoint
The polygon or curve to approximate.
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

Return Value

Type: Point
The result of the approximation; The type should match the type of the input curve
See Also