| 2652 | } |
| 2653 | |
| 2654 | CV_IMPL void |
| 2655 | cvPolyLine( CvArr* _img, CvPoint **pts, const int *npts, |
| 2656 | int ncontours, int closed, CvScalar color, |
| 2657 | int thickness, int line_type, int shift ) |
| 2658 | { |
| 2659 | cv::Mat img = cv::cvarrToMat(_img); |
| 2660 | |
| 2661 | cv::polylines( img, (const cv::Point**)pts, npts, ncontours, |
| 2662 | closed != 0, color, thickness, line_type, shift ); |
| 2663 | } |
| 2664 | |
| 2665 | CV_IMPL void |
| 2666 | cvPutText( CvArr* _img, const char *text, CvPoint org, const CvFont *_font, CvScalar color ) |
nothing calls this directly
no test coverage detected