MCPcopy Create free account
hub / github.com/creatale/node-dv / arcLength

Method arcLength

deps/opencv/modules/imgproc/src/contours.cpp:1888–1894  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1886
1887
1888double cv::arcLength( InputArray _curve, bool closed )
1889{
1890 Mat curve = _curve.getMat();
1891 CV_Assert(curve.checkVector(2) >= 0 && (curve.depth() == CV_32F || curve.depth() == CV_32S));
1892 CvMat _ccurve = curve;
1893 return cvArcLength(&_ccurve, CV_WHOLE_SEQ, closed);
1894}
1895
1896
1897cv::Rect cv::boundingRect( InputArray _points )

Callers

nothing calls this directly

Calls 4

cvArcLengthFunction · 0.85
checkVectorMethod · 0.80
getMatMethod · 0.45
depthMethod · 0.45

Tested by

no test coverage detected