| Cv2ArcLength Method (IEnumerablePoint, Boolean) |
Calculates a contour perimeter or a curve length.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static double ArcLength(
IEnumerable<Point> curve,
bool closed
)
Public Shared Function ArcLength (
curve As IEnumerable(Of Point),
closed As Boolean
) As Double
public:
static double ArcLength(
IEnumerable<Point>^ curve,
bool closed
)
static member ArcLength :
curve : IEnumerable<Point> *
closed : bool -> float
Parameters
- curve
- Type: System.Collections.GenericIEnumerablePoint
The input vector of 2D points. - closed
- Type: SystemBoolean
Indicates, whether the curve is closed or not.
Return Value
Type:
Double[Missing <returns> documentation for "M:OpenCvSharp.Cv2.ArcLength(System.Collections.Generic.IEnumerable{OpenCvSharp.Point},System.Boolean)"]
See Also