houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib.SdkStructure;
4 import com.iailab.netsdk.lib.NetSDKLib.POINTCOORDINATE;
5 /**
6  * @description 事件类型EVENT_IVS_TRAFFIC_THROW(抛洒物事件) 对应的规则配置
7  * @author 119178
8  * @date 2021/3/11
9  */
10 public class NET_TRAFFIC_THROW_RULE_INFO extends SdkStructure{
11     /**
12      * 检测区
13      */
14     public POINTCOORDINATE[]                stuDetectRegion=(POINTCOORDINATE[])new POINTCOORDINATE().toArray(20);
15     /**
16      * 检测区顶点数
17      */
18     public    int                            nDetectRegionPoint;    
19     /**
20      * 车道编号 与场景中的车道号对应
21      */
22     public    int                            nLaneNumber;    
23     /**
24      * 最短触发时间,单位:秒
25      */
26     public    int                            nMinDuration;
27     /**
28      * 报警间隔时间,单位:秒
29      */
30     public    int                            nInterval;    
31     /**
32      * 是否抓拍摩托车
33      */
34     public    int                        bSnapMotorcycle;    
35     /**
36      * 变倍抓拍,违停球做规则判断时,默认会变倍
37      * 如下两种情况不适合变倍
38      * 1. 车速较快场合,变倍会导致跟踪不及时
39      * 2. 车牌很近,由于机芯的光轴畸变会导致车牌过大,算法无法识别
40      * 在以上这两种情况下,需要关闭变倍。是否要关闭变倍取决于现场情况,属于比较专业的配置
41      */
42     public    int                        bZoomEnable;                            
43     /**
44      * 重复报警时间,无该字段不做处理
45      */
46     public    int                        nRepeatAlarmTime;
47     /**
48      * 抓拍目标类型,默认抓拍行人,后续可做扩展.无该字段不做处理
49      */
50     public    int                        nSnapObjectType;        
51     /**
52      * 检测到行人后多少时间开始报警。单位:秒,范围0-3600.无该字段不做处理
53      */
54     public    int                        nDelayTime;            
55     /**
56      * 灵敏度,范围1~100 ,配置0即为默认值,灵敏度越大算法检测越灵敏
57      */
58     public    int                         nSensitivity;  
59     /**
60      *  保留字节
61      */
62     public    byte[]                        byReserved = new byte[4096]; 
63 }