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/01/07
9  */
10 public class NET_REGION_PEOPLE_STAT_INFO extends NetSDKLib.SdkStructure{
11     /**
12      *  区域ID
13      */
14     public int nRegionID;
15
16     /**
17      *  区域名称
18      */
19     public byte[] szRegionName = new byte[128];
20
21     /**
22      *  区域顶点个数
23      */
24     public int nRegionPointNum;
25
26     /**
27      *  区域顶点坐标
28      */
29     public NetSDKLib.NET_POINT[] stuRegionPoint = (NetSDKLib.NET_POINT[]) new NetSDKLib.NET_POINT().toArray(20);
30     /**
31      *  区域内人数
32      */
33     public int nPeopleNum;
34
35     /**
36      *  保留字节
37      */
38     public byte[] byReserved = new byte[1024];    
39
40 }