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

Function cvFillConvexPoly

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

Source from the content-addressed store, hash-verified

2634}
2635
2636CV_IMPL void
2637cvFillConvexPoly( 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
2645CV_IMPL void
2646cvFillPoly( CvArr* _img, CvPoint **pts, const int *npts, int ncontours,

Callers

nothing calls this directly

Calls 2

cvarrToMatFunction · 0.85
fillConvexPolyFunction · 0.85

Tested by

no test coverage detected