| 17 | int desired_color, CvRect r ); |
| 18 | #if defined WIN32 || defined _WIN32 |
| 19 | virtual bool LoadRect( const char* filename, |
| 20 | int desired_color, RECT r ) |
| 21 | { |
| 22 | return LoadRect( filename, desired_color, |
| 23 | cvRect( r.left, r.top, r.right - r.left, r.bottom - r.top )); |
| 24 | } |
| 25 | #endif |
| 26 | /* Save entire image to specified file. */ |
| 27 | virtual bool Save( const char* filename ); |
nothing calls this directly
no outgoing calls
no test coverage detected