| 2643 | } |
| 2644 | |
| 2645 | CV_IMPL void |
| 2646 | cvFillPoly( CvArr* _img, CvPoint **pts, const int *npts, int ncontours, |
| 2647 | CvScalar color, int line_type, int shift ) |
| 2648 | { |
| 2649 | cv::Mat img = cv::cvarrToMat(_img); |
| 2650 | |
| 2651 | cv::fillPoly( img, (const cv::Point**)pts, npts, ncontours, color, line_type, shift ); |
| 2652 | } |
| 2653 | |
| 2654 | CV_IMPL void |
| 2655 | cvPolyLine( CvArr* _img, CvPoint **pts, const int *npts, |
nothing calls this directly
no test coverage detected