houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 47081
7  * @version 1.0
8  * @description 人脸图片比较信息
9  * @date 2020/10/19
10  */
11 public class NET_IMAGE_COMPARE_INFO extends NetSDKLib.SdkStructure {
12     /**
13      * 在二进制数据块中的偏移,单位:字节
14      */
15     public int dwoffset;
16     /**
17      * 图片大小,单位:字节
18      */
19     public int dwLength;
20     /**
21      * 图片宽度
22      */
23     public int dwWidth;
24     /**
25      * 图片高度
26      */
27     public int dwHeight;
28     /**
29      * 保留字节
30      */
31     public byte[] byReserved = new byte[128];
32 }