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

Function cvPolyLine

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

Source from the content-addressed store, hash-verified

2652}
2653
2654CV_IMPL void
2655cvPolyLine( 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
2665CV_IMPL void
2666cvPutText( CvArr* _img, const char *text, CvPoint org, const CvFont *_font, CvScalar color )

Callers

nothing calls this directly

Calls 2

cvarrToMatFunction · 0.85
polylinesFunction · 0.85

Tested by

no test coverage detected