| 2300 | |
| 2301 | |
| 2302 | void cv::fillConvexPoly(InputOutputArray _img, InputArray _points, |
| 2303 | const Scalar& color, int lineType, int shift) |
| 2304 | { |
| 2305 | Mat img = _img.getMat(), points = _points.getMat(); |
| 2306 | CV_Assert(points.checkVector(2, CV_32S) >= 0); |
| 2307 | fillConvexPoly(img, (const Point*)points.data, points.rows*points.cols*points.channels()/2, color, lineType, shift); |
| 2308 | } |
| 2309 | |
| 2310 | |
| 2311 | void cv::fillPoly(InputOutputArray _img, InputArrayOfArrays pts, |
nothing calls this directly
no test coverage detected