Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
提交 | 用户 | 时间
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_OVERYELLOWLINE(压黄线事件) 对应的规则配置
7  * @author 119178
8  * @date 2021/3/11
9  */
10 public class NET_TRAFFIC_OVERYELLOWLINE_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      * 是否使能区域内触发该规则, false-不使能,true-使能
25      */
26     public int                        bAreaTrigEnable;            
27     /**
28      * 灵敏度,范围[1,10],灵敏度越高越容易检测
29      */
30     public int                         nSensitivity;  
31     /**
32      * 是否抓拍摩托车
33      */
34     public int                        bSnapMotorcycle;
35     /**
36      * 事件检测模式下,配置给算法,表示检测到事件发生后,多长时间开始报警,单位:秒,范围0-3600,无该字段不做处理
37      */
38     public int                        nDelayTime;    
39     /**
40      * 保留字节
41      */
42     public byte[]                        byReserved=new byte[4096];                       
43 }