| 24 | } |
| 25 | CV_INLINE CvRect RectToCvRect( RECT sr ); |
| 26 | CV_INLINE CvRect RectToCvRect( RECT sr ) |
| 27 | { |
| 28 | sr = NormalizeRect( sr ); |
| 29 | return cvRect( sr.left, sr.top, sr.right - sr.left, sr.bottom - sr.top ); |
| 30 | } |
| 31 | CV_INLINE RECT CvRectToRect( CvRect sr ); |
| 32 | CV_INLINE RECT CvRectToRect( CvRect sr ) |
| 33 | { |
no test coverage detected