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