| 1886 | |
| 1887 | |
| 1888 | double 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 | |
| 1897 | cv::Rect cv::boundingRect( InputArray _points ) |
nothing calls this directly
no test coverage detected