Home | History | Annotate | Download | only in highgui

Lines Matching refs:sr

290 CV_INLINE CvRect RectToCvRect( RECT sr );
291 CV_INLINE CvRect RectToCvRect( RECT sr )
293 sr = NormalizeRect( sr );
294 return cvRect( sr.left, sr.top, sr.right - sr.left, sr.bottom - sr.top );
297 CV_INLINE RECT CvRectToRect( CvRect sr );
298 CV_INLINE RECT CvRectToRect( CvRect sr )
301 dr.left = sr.x;
302 dr.top = sr.y;
303 dr.right = sr.x + sr.width;
304 dr.bottom = sr.y + sr.height;