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
| package com.iailab.netsdk.lib.structure;
|
| import com.iailab.netsdk.lib.NetSDKLib;
|
| /**
| * @author 251823
| * @description 标定信息单元
| * @date 2021/02/02
| */
| public class CFG_CALIBRATE_UNIT_INFO extends NetSDKLib.SdkStructure{
|
| /**
| * 分辨率高
| */
| public int nHeight;
|
| /**
| * 分辨率宽
| */
| public int nWidth;
|
| /**
| * 云台位置(P/T/Z 归一化)
| */
| public float[] nPosition =new float[3];
|
| /**
| * 标定点坐标
| */
| public int[] nLocation =new int[2];
|
| /**
| * 横向视场角(单位:0.01度)
| */
| public int nHFOV;
|
| /**
| * 纵向视场角(单位:0.01度)
| */
| public int nVFOV;
|
| }
|
|