| 2607 | } |
| 2608 | |
| 2609 | CV_IMPL void |
| 2610 | cvRectangleR( CvArr* _img, CvRect rec, |
| 2611 | CvScalar color, int thickness, |
| 2612 | int line_type, int shift ) |
| 2613 | { |
| 2614 | cv::Mat img = cv::cvarrToMat(_img); |
| 2615 | cv::rectangle( img, rec, color, thickness, line_type, shift ); |
| 2616 | } |
| 2617 | |
| 2618 | CV_IMPL void |
| 2619 | cvCircle( CvArr* _img, CvPoint center, int radius, |
nothing calls this directly
no test coverage detected