| 1895 | |
| 1896 | |
| 1897 | cv::Rect cv::boundingRect( InputArray _points ) |
| 1898 | { |
| 1899 | Mat points = _points.getMat(); |
| 1900 | CV_Assert(points.checkVector(2) >= 0 && (points.depth() == CV_32F || points.depth() == CV_32S)); |
| 1901 | CvMat _cpoints = points; |
| 1902 | return cvBoundingRect(&_cpoints, 0); |
| 1903 | } |
| 1904 | |
| 1905 | |
| 1906 | double cv::contourArea( InputArray _contour, bool oriented ) |
nothing calls this directly
no test coverage detected