提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
|
|
4 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
5 |
|
|
6 |
/** |
|
7 |
* @author 291189 |
|
8 |
* @description 统计区车辆,排队信息 |
|
9 |
* @origin autoTool |
|
10 |
* @date 2023/07/03 14:46:48 |
|
11 |
*/ |
|
12 |
public class NET_VEHICLES_DISTRIBUTION_DATA extends NetSDKLib.SdkStructure { |
|
13 |
/** |
|
14 |
预置点 |
|
15 |
*/ |
|
16 |
public int nPtzPresetId; |
|
17 |
/** |
|
18 |
规则ID |
|
19 |
*/ |
|
20 |
public int nRuleId; |
|
21 |
/** |
|
22 |
规则类型 |
|
23 |
197 : videoAnalyseCongestionDetection 车流拥堵规则配置(针对道路场景) |
|
24 |
|
|
25 |
198 : videoAnalyseVehicleLimitDetection 车辆上限统计检测规则 |
|
26 |
*/ |
|
27 |
public int nRuleType; |
|
28 |
/** |
|
29 |
车辆数量 |
|
30 |
*/ |
|
31 |
public int nVehiclesNum; |
|
32 |
/** |
|
33 |
排队长度,单位:米 |
|
34 |
*/ |
|
35 |
public int nQueueLen; |
|
36 |
/** |
|
37 |
区域坐标 多边形中每个顶点的坐标坐标归一化到[0,8191]区间 |
|
38 |
*/ |
|
39 |
public NET_UINT_POINT[] stuRegion=new NET_UINT_POINT[32]; |
|
40 |
/** |
|
41 |
区域坐标个数 |
|
42 |
*/ |
|
43 |
public int nRegionNum; |
|
44 |
/** |
|
45 |
区域车辆上限 |
|
46 |
*/ |
|
47 |
public int nVehiclesLimit; |
|
48 |
/** |
|
49 |
规则名称 |
|
50 |
*/ |
|
51 |
public byte[] szRuleName=new byte[32]; |
|
52 |
|
|
53 |
public NET_VEHICLES_DISTRIBUTION_DATA(){ |
|
54 |
for(int i=0;i<stuRegion.length;i++){ |
|
55 |
stuRegion[i]=new NET_UINT_POINT(); |
|
56 |
} |
|
57 |
} |
|
58 |
} |