| 30 | } |
| 31 | CV_INLINE RECT CvRectToRect( CvRect sr ); |
| 32 | CV_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 | } |
| 42 | CV_INLINE IplROI RectToROI( RECT r ); |
| 43 | CV_INLINE IplROI RectToROI( RECT r ) |
| 44 | { |
nothing calls this directly
no outgoing calls
no test coverage detected