写出zbar_image_t结构体
时间: 2023-08-04 18:03:23 浏览: 84
QRCode.zip_openvc一扫码_qrcode开源库_二维码 opencv_二维码 zbar_二维码opencv
5星 · 资源好评率100%
以下是 `zbar_image_t` 结构体的定义,包含了该结构体的所有属性:
```c
typedef struct zbar_image_s {
unsigned long long int seq;
unsigned width, height;
unsigned char *data;
unsigned long datalen;
zbar_image_format_t format;
zbar_symbol_type_t type;
unsigned quality;
unsigned img_bound[4];
zbar_image_t *next;
} zbar_image_t;
```
其中,`zbar_image_s` 是结构体的名称,`zbar_image_t` 是该结构体的别名,方便在程序中使用。`seq` 表示图像的序列号,`width` 和 `height` 分别表示图像的宽度和高度,`data` 表示图像的数据,`datalen` 表示数据的长度,`format` 表示图像的格式,`type` 表示图像中包含的条码或二维码的类型,`quality` 表示图像的质量,`img_bound` 表示图像的边界,`next` 是指向下一个图像节点的指针。
阅读全文