|
| | CvMatrix () |
| |
| | CvMatrix (int _rows, int _cols, int _type) |
| |
| | CvMatrix (int _rows, int _cols, int _type, CvMat *hdr, void *_data=0, int _step=CV_AUTOSTEP) |
| |
| | CvMatrix (int rows, int cols, int type, CvMemStorage *storage, bool alloc_data=true) |
| |
| | CvMatrix (int _rows, int _cols, int _type, void *_data, int _step=CV_AUTOSTEP) |
| |
| | CvMatrix (CvMat *m) |
| |
| | CvMatrix (const CvMatrix &m) |
| |
| | CvMatrix (const char *filename, const char *matname=0, int color=-1) |
| |
| | CvMatrix (CvFileStorage *fs, const char *mapname, const char *matname) |
| |
| | CvMatrix (CvFileStorage *fs, const char *seqname, int idx) |
| |
| | ~CvMatrix () |
| |
| CvMatrix | clone () |
| |
| void | set (CvMat *m, bool add_ref) |
| |
| void | create (int _rows, int _cols, int _type) |
| |
| void | addref () const |
| |
| void | release () |
| |
| void | clear () |
| |
| bool | load (const char *filename, const char *matname=0, int color=-1) |
| |
| bool | read (CvFileStorage *fs, const char *mapname, const char *matname) |
| |
| bool | read (CvFileStorage *fs, const char *seqname, int idx) |
| |
| void | save (const char *filename, const char *matname, const int *params=0) |
| |
| void | write (CvFileStorage *fs, const char *matname) |
| |
| void | show (const char *window_name) |
| |
| bool | is_valid () |
| |
| int | rows () const |
| |
| int | cols () const |
| |
| CvSize | size () const |
| |
| int | type () const |
| |
| int | depth () const |
| |
| int | channels () const |
| |
| int | pix_size () const |
| |
| uchar * | data () |
| |
| const uchar * | data () const |
| |
| int | step () const |
| |
| void | set_data (void *_data, int _step=CV_AUTOSTEP) |
| |
| uchar * | row (int i) |
| |
| const uchar * | row (int i) const |
| |
| | operator const CvMat * () const |
| |
| | operator CvMat * () |
| |
| CvMatrix & | operator= (const CvMatrix &_m) |
| |