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

Function cvCircle

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

Source from the content-addressed store, hash-verified

2616}
2617
2618CV_IMPL void
2619cvCircle( CvArr* _img, CvPoint center, int radius,
2620 CvScalar color, int thickness, int line_type, int shift )
2621{
2622 cv::Mat img = cv::cvarrToMat(_img);
2623 cv::circle( img, center, radius, color, thickness, line_type, shift );
2624}
2625
2626CV_IMPL void
2627cvEllipse( CvArr* _img, CvPoint center, CvSize axes,

Callers

nothing calls this directly

Calls 2

cvarrToMatFunction · 0.85
circleFunction · 0.85

Tested by

no test coverage detected