| 2598 | } |
| 2599 | |
| 2600 | CV_IMPL void |
| 2601 | cvRectangle( CvArr* _img, CvPoint pt1, CvPoint pt2, |
| 2602 | CvScalar color, int thickness, |
| 2603 | int line_type, int shift ) |
| 2604 | { |
| 2605 | cv::Mat img = cv::cvarrToMat(_img); |
| 2606 | cv::rectangle( img, pt1, pt2, color, thickness, line_type, shift ); |
| 2607 | } |
| 2608 | |
| 2609 | CV_IMPL void |
| 2610 | cvRectangleR( CvArr* _img, CvRect rec, |
nothing calls this directly
no test coverage detected