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