houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4 import com.iailab.netsdk.lib.constant.SDKStructureFieldLenth;
5
6 /**
7  * @author 251823
8  * @description 设备参数标定配置
9  * @date 2021/02/01
10  */
11 public class CFG_LOCATION_CALIBRATE_INFO extends NetSDKLib.SdkStructure{
12     /**
13      * 可见光横向视角
14      */
15     public int nVisualMaxHFOV;
16     
17     /**
18      * 可见光纵向视角
19      */
20     public int nVisualMaxVFOV;
21     
22     /**
23      * 热成像横向视角
24      */
25     public int nThermoMaxHFOV;
26     
27     /**
28      * 热成像纵向视角
29      */
30     public int nThermoMaxVFOV;
31     
32     /**
33      * 标定点信息
34      */
35     public CFG_LOCATION_CALIBRATE_POINT_INFO[] stuPointInfo = new CFG_LOCATION_CALIBRATE_POINT_INFO[SDKStructureFieldLenth.MAX_CALIBRATE_POINT_NUM];
36     
37     /**
38      * 标定点个数
39      */
40     public int nPointNum;
41     
42     /**
43      * 字节对齐 
44      */
45     public byte[] byReserved1 = new byte[4];
46     
47     public CFG_LOCATION_CALIBRATE_INFO() {
48         for (int i = 0; i < stuPointInfo.length; i++) {
49             stuPointInfo[i] = new CFG_LOCATION_CALIBRATE_POINT_INFO();
50         }
51     }
52                     
53 }