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

Function cvLine

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

Source from the content-addressed store, hash-verified

2590}
2591
2592CV_IMPL void
2593cvLine( CvArr* _img, CvPoint pt1, CvPoint pt2, CvScalar color,
2594 int thickness, int line_type, int shift )
2595{
2596 cv::Mat img = cv::cvarrToMat(_img);
2597 cv::line( img, pt1, pt2, color, thickness, line_type, shift );
2598}
2599
2600CV_IMPL void
2601cvRectangle( CvArr* _img, CvPoint pt1, CvPoint pt2,

Callers

nothing calls this directly

Calls 2

cvarrToMatFunction · 0.85
lineFunction · 0.85

Tested by

no test coverage detected