houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
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 2022/05/10 20:41:58
9  */
10 public class PTZ_PRESET_UNIT extends NetSDKLib.SdkStructure {
11     /**
12      * 水平坐标,范围[0,3599],表示0度到359.9度,度数扩大10倍表示。
13      */
14     public int nPositionX;
15     /**
16      * 垂直坐标,范围[-1800,1800],表示-180.0度到+180.0度,度数扩大10倍表示。
17      */
18     public int nPositionY;
19     /**
20      * 放大参数,范围[0,127],表示最小倍到最大倍的变倍位置
21      */
22     public int nZoom;
23     /**
24      * 预留32字节
25      */
26     public byte[] szReserve = new byte[32];
27
28     public PTZ_PRESET_UNIT() {
29     }
30 }