js css html

C#:CvMat矩阵结构

2022-09-09  本文已影响0人  大龙10

《学习OpenCV(中文版)》

作者:(美)布拉德斯基(Bradski,G.),
(美)克勒(Kaehler,A.) 著
出版社:清华大学出版社
出版时间:2009年10月

一、两个重点注意

二、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;
上一篇下一篇

猜你喜欢

热点阅读