| 1913 | |
| 1914 | |
| 1915 | cv::RotatedRect cv::minAreaRect( InputArray _points ) |
| 1916 | { |
| 1917 | Mat points = _points.getMat(); |
| 1918 | CV_Assert(points.checkVector(2) >= 0 && (points.depth() == CV_32F || points.depth() == CV_32S)); |
| 1919 | CvMat _cpoints = points; |
| 1920 | return cvMinAreaRect2(&_cpoints, 0); |
| 1921 | } |
| 1922 | |
| 1923 | |
| 1924 | void cv::minEnclosingCircle( InputArray _points, |
nothing calls this directly
no test coverage detected