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

Function cvRectangle

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

Source from the content-addressed store, hash-verified

2598}
2599
2600CV_IMPL void
2601cvRectangle( CvArr* _img, CvPoint pt1, CvPoint pt2,
2602 CvScalar color, int thickness,
2603 int line_type, int shift )
2604{
2605 cv::Mat img = cv::cvarrToMat(_img);
2606 cv::rectangle( img, pt1, pt2, color, thickness, line_type, shift );
2607}
2608
2609CV_IMPL void
2610cvRectangleR( CvArr* _img, CvRect rec,

Callers

nothing calls this directly

Calls 2

cvarrToMatFunction · 0.85
rectangleFunction · 0.85

Tested by

no test coverage detected