typedef struct CvMatND

来源:互联网 发布:mkv播放器下载mac 编辑:程序博客网 时间:2024/06/06 10:57
typedef struct CvMatND{    int type;    int dims;    int* refcount;    int hdr_refcount;    union    {        uchar* ptr;        float* fl;        double* db;        int* i;        short* s;    } data;    struct    {        int size;        int step;    }    dim[CV_MAX_DIM];}CvMatND;