| 2590 | } |
| 2591 | |
| 2592 | CV_IMPL void |
| 2593 | cvLine( CvArr* _img, CvPoint pt1, CvPoint pt2, CvScalar color, |
| 2594 | int thickness, int line_type, int shift ) |
| 2595 | { |
| 2596 | cv::Mat img = cv::cvarrToMat(_img); |
| 2597 | cv::line( img, pt1, pt2, color, thickness, line_type, shift ); |
| 2598 | } |
| 2599 | |
| 2600 | CV_IMPL void |
| 2601 | cvRectangle( CvArr* _img, CvPoint pt1, CvPoint pt2, |
nothing calls this directly
no test coverage detected