| 197 | return true; |
| 198 | } |
| 199 | void CvvImage::Show( const char* window ) |
| 200 | { |
| 201 | if( m_img ) |
| 202 | cvShowImage( window, m_img ); |
| 203 | } |
| 204 | void CvvImage::Show( HDC dc, int x, int y, int w, int h, int from_x, int from_y ) |
| 205 | { |
| 206 | if( m_img && m_img->depth == IPL_DEPTH_8U ) |
nothing calls this directly
no test coverage detected