Searched defs:CvImage (Results 1 – 1 of 1) sorted by relevance
/external/opencv/cxcore/include/ |
D | cxcore.hpp | 46 class CV_EXPORTS CvImage class 49 CvImage() : image(0), refcount(0) {} in CvImage() function in CvImage 50 CvImage( CvSize size, int depth, int channels ) in CvImage() function in CvImage 56 CvImage( IplImage* img ) : image(img) in CvImage() function in CvImage 61 CvImage( const CvImage& img ) : image(img.image), refcount(img.refcount) in CvImage() function in CvImage 66 CvImage( const char* filename, const char* imgname=0, int color=-1 ) : image(0), refcount(0) in CvImage() function in CvImage 69 CvImage( CvFileStorage* fs, const char* mapname, const char* imgname ) : image(0), refcount(0) in CvImage() function in CvImage 72 CvImage( CvFileStorage* fs, const char* seqname, int idx ) : image(0), refcount(0) in CvImage() function in CvImage
|