| 2634 | } |
| 2635 | |
| 2636 | CV_IMPL void |
| 2637 | cvFillConvexPoly( CvArr* _img, const CvPoint *pts, int npts, |
| 2638 | CvScalar color, int line_type, int shift ) |
| 2639 | { |
| 2640 | cv::Mat img = cv::cvarrToMat(_img); |
| 2641 | cv::fillConvexPoly( img, (const cv::Point*)pts, npts, |
| 2642 | color, line_type, shift ); |
| 2643 | } |
| 2644 | |
| 2645 | CV_IMPL void |
| 2646 | cvFillPoly( CvArr* _img, CvPoint **pts, const int *npts, int ncontours, |
nothing calls this directly
no test coverage detected