cvMat,函式的一種,矩陣變換函式。
基本介紹
- 外文名:cvMat
- 隸屬:OpenCV
- 類型:矩陣變換函式
- 矩陣頭:typedef struct CvMat
函式簡介
基本結構
typedef struct CvMat{ int type; int step; int* refcount;/* for internal use only */ int hdr_refcount; union { uchar* ptr; short* s; int* i; float* fl; double* db; } data; union { int rows; int height; }; union { int cols; int width; };} CvMat;