HomeSort by relevance Sort by last modified time
    Searched refs:CvImage (Results 1 - 2 of 2) sorted by null

  /external/opencv/cxcore/include/
cxcore.hpp 46 class CV_EXPORTS CvImage
49 CvImage() : image(0), refcount(0) {}
50 CvImage( CvSize size, int depth, int channels )
56 CvImage( IplImage* img ) : image(img)
61 CvImage( const CvImage& img ) : image(img.image), refcount(img.refcount)
66 CvImage( const char* filename, const char* imgname=0, int color=-1 ) : image(0), refcount(0)
69 CvImage( CvFileStorage* fs, const char* mapname, const char* imgname ) : image(0), refcount(0)
72 CvImage( CvFileStorage* fs, const char* seqname, int idx ) : image(0), refcount(0)
75 ~CvImage()
    [all...]
  /external/opencv/cxcore/src/
cximage.cpp 50 /////////////////////////////// CvImage implementation //////////////////////////////////
107 bool CvImage::load( const char* filename, const char* imgname, int color )
111 CV_FUNCNAME( "CvImage::read" );
147 bool CvImage::read( CvFileStorage* fs, const char* mapname, const char* imgname )
167 bool CvImage::read( CvFileStorage* fs, const char* seqname, int idx )
182 void CvImage::save( const char* filename, const char* imgname )
184 CV_FUNCNAME( "CvImage::write" );
205 void CvImage::write( CvFileStorage* fs, const char* imgname )
380 CvImage a(cvSize(300,200),8,3), b(cvSize(300,200),8,3);

Completed in 183 milliseconds