| 2018 | } |
| 2019 | |
| 2020 | cv::RotatedRect cv::fitEllipse( InputArray _points ) |
| 2021 | { |
| 2022 | Mat points = _points.getMat(); |
| 2023 | CV_Assert(points.checkVector(2) >= 0 && |
| 2024 | (points.depth() == CV_32F || points.depth() == CV_32S)); |
| 2025 | CvMat _cpoints = points; |
| 2026 | return cvFitEllipse2(&_cpoints); |
| 2027 | } |
| 2028 | |
| 2029 | |
| 2030 | void cv::fitLine( InputArray _points, OutputArray _line, int distType, |
nothing calls this directly
no test coverage detected