| 190 | return true; |
| 191 | } |
| 192 | bool CvvImage::Save( const char* filename ) |
| 193 | { |
| 194 | if( !m_img ) |
| 195 | return false; |
| 196 | cvSaveImage( filename, m_img ); |
| 197 | return true; |
| 198 | } |
| 199 | void CvvImage::Show( const char* window ) |
| 200 | { |
| 201 | if( m_img ) |
nothing calls this directly
no outgoing calls
no test coverage detected