MCPcopy Create free account
hub / github.com/creatale/node-dv / fillConvexPoly

Method fillConvexPoly

deps/opencv/modules/core/src/drawing.cpp:2302–2308  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2300
2301
2302void 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
2311void cv::fillPoly(InputOutputArray _img, InputArrayOfArrays pts,

Callers

nothing calls this directly

Calls 4

fillConvexPolyFunction · 0.85
checkVectorMethod · 0.80
getMatMethod · 0.45
channelsMethod · 0.45

Tested by

no test coverage detected