houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib.POINTCOORDINATE;
4 import com.iailab.netsdk.lib.NetSDKLib.SdkStructure;
5
6 public class NET_TRAFFIC_PARKING_RULE_INFO extends SdkStructure{
7     /**
8      * 检测区域
9      */
10     public POINTCOORDINATE[]       stuDetectRegion=(POINTCOORDINATE[]) new POINTCOORDINATE().toArray(20);
11     /**
12      * 检测区域顶点数
13      */
14     public int                        nDetectRegionPoint;
15     public int                        nLaneNumber;                            // 车道编号 与场景中的车道号对应
16     public int                        nDelay;                                    // 检测到报警发生到开始上报的时间,单位:秒 范围1~65535
17     public int                        nReportTimes;                            // 上报次数 1~255
18     public int                        nParkingAllowedTime;                    // 允许停车时间 单位:秒,范围1~65535
19     public int                         nSensitivity;                           // 灵敏度,范围[1,10],灵敏度越高越容易检测
20     public int                         nParkingNumThreshold;                   // 停车数阈值,画面中停车数量大于此值时不报警 取值1-128
21     public int                        bZoomEnable;                            // 变倍抓拍,违停球做规则判断时,默认会变倍
22     public int                        bSnapMotorcycle;                        // 是否抓拍摩托车
23     public int                        nDectRegionNumber;                      // 检测区域号 与场景中的检测区域编号对应
24     public int                         nShadeSnap;                             // 遮挡抓拍,默认为0 0:不支持1:支持
25     public int                         nControlMoreAlerts;                     // 是否开启抑制同一个目标重复多报功能,0:不开启该功能,1:开启功能
26     public int                         nReduceUnderreporting;                  // 是否开启减少id跳变导致的漏报功能,0:不开启该功能,1:开启功能 
27     public byte[]                   byReserved=new byte[4096];                       // 保留字节
28 }