现在的位置: 首页 > 综合 > 正文

typedef struct CvMatND

2013年10月05日 ⁄ 综合 ⁄ 共 170字 ⁄ 字号 评论关闭
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;

【上篇】
【下篇】

抱歉!评论已关闭.