MCPcopy Create free account
hub / github.com/DennisLiu1993/Fastest_Image_Pattern_Matching / CvRectToRect

Function CvRectToRect

MatchTool/CvvImage.cpp:32–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30}
31CV_INLINE RECT CvRectToRect( CvRect sr );
32CV_INLINE RECT CvRectToRect( CvRect sr )
33{
34 RECT dr;
35 dr.left = sr.x;
36 dr.top = sr.y;
37 dr.right = sr.x + sr.width;
38 dr.bottom = sr.y + sr.height;
39
40 return dr;
41}
42CV_INLINE IplROI RectToROI( RECT r );
43CV_INLINE IplROI RectToROI( RECT r )
44{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected