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

Function cvFillPoly

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

Source from the content-addressed store, hash-verified

2643}
2644
2645CV_IMPL void
2646cvFillPoly( 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
2654CV_IMPL void
2655cvPolyLine( CvArr* _img, CvPoint **pts, const int *npts,

Callers

nothing calls this directly

Calls 2

cvarrToMatFunction · 0.85
fillPolyFunction · 0.85

Tested by

no test coverage detected