提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
4 |
|
|
5 |
/** |
|
6 |
* @author 251823 |
|
7 |
* @description 标定信息单元 |
|
8 |
* @date 2021/02/02 |
|
9 |
*/ |
|
10 |
public class CFG_CALIBRATE_UNIT_INFO extends NetSDKLib.SdkStructure{ |
|
11 |
|
|
12 |
/** |
|
13 |
* 分辨率高 |
|
14 |
*/ |
|
15 |
public int nHeight; |
|
16 |
|
|
17 |
/** |
|
18 |
* 分辨率宽 |
|
19 |
*/ |
|
20 |
public int nWidth; |
|
21 |
|
|
22 |
/** |
|
23 |
* 云台位置(P/T/Z 归一化) |
|
24 |
*/ |
|
25 |
public float[] nPosition =new float[3]; |
|
26 |
|
|
27 |
/** |
|
28 |
* 标定点坐标 |
|
29 |
*/ |
|
30 |
public int[] nLocation =new int[2]; |
|
31 |
|
|
32 |
/** |
|
33 |
* 横向视场角(单位:0.01度) |
|
34 |
*/ |
|
35 |
public int nHFOV; |
|
36 |
|
|
37 |
/** |
|
38 |
* 纵向视场角(单位:0.01度) |
|
39 |
*/ |
|
40 |
public int nVFOV; |
|
41 |
|
|
42 |
} |