Home | History | Annotate | Download | only in include

Lines Matching refs:CvMatrix

210 class CV_EXPORTS CvMatrix
213 CvMatrix() : matrix(0) {}
214 CvMatrix( int rows, int cols, int type )
217 CvMatrix( int rows, int cols, int type, CvMat* hdr,
221 CvMatrix( int rows, int cols, int type, CvMemStorage* storage, bool alloc_data=true );
223 CvMatrix( int rows, int cols, int type, void* data, int step=CV_AUTOSTEP )
227 CvMatrix( CvMat* m )
230 CvMatrix( const CvMatrix& m )
236 CvMatrix( const char* filename, const char* matname=0, int color=-1 ) : matrix(0)
239 CvMatrix( CvFileStorage* fs, const char* mapname, const char* matname ) : matrix(0)
242 CvMatrix( CvFileStorage* fs, const char* seqname, int idx ) : matrix(0)
245 ~CvMatrix()
250 CvMatrix clone() { return CvMatrix(matrix ? cvCloneMat(matrix) : 0); }
339 CvMatrix& operator = (const CvMatrix& _m)