| 2616 | } |
| 2617 | |
| 2618 | CV_IMPL void |
| 2619 | cvCircle( CvArr* _img, CvPoint center, int radius, |
| 2620 | CvScalar color, int thickness, int line_type, int shift ) |
| 2621 | { |
| 2622 | cv::Mat img = cv::cvarrToMat(_img); |
| 2623 | cv::circle( img, center, radius, color, thickness, line_type, shift ); |
| 2624 | } |
| 2625 | |
| 2626 | CV_IMPL void |
| 2627 | cvEllipse( CvArr* _img, CvPoint center, CvSize axes, |
nothing calls this directly
no test coverage detected