提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
|
|
4 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
5 |
|
|
6 |
/** |
|
7 |
事件类型 EVENT_IVS_SEWAGE_DETECTION (排污检测事件) 对应的数据描述信息 |
|
8 |
*/ |
|
9 |
public class DEV_EVENT_SEWAGE_DETECTION_INFO extends NetSDKLib.SdkStructure { |
|
10 |
/** |
|
11 |
通道号 |
|
12 |
*/ |
|
13 |
public int nChannelID; |
|
14 |
/** |
|
15 |
事件动作,0表示脉冲事件,1表示持续性事件开始,2表示持续性事件结束; |
|
16 |
*/ |
|
17 |
public int nAction; |
|
18 |
/** |
|
19 |
智能事件所属大类 EM_CLASS_TYPE |
|
20 |
*/ |
|
21 |
public int emClassType; |
|
22 |
/** |
|
23 |
事件名称 |
|
24 |
*/ |
|
25 |
public byte[] szName=new byte[128]; |
|
26 |
/** |
|
27 |
事件组ID |
|
28 |
*/ |
|
29 |
public int nGroupID; |
|
30 |
/** |
|
31 |
一个事件组内应有的抓拍张数 |
|
32 |
*/ |
|
33 |
public int nCountInGroup; |
|
34 |
/** |
|
35 |
一个事件组内的抓拍序号 |
|
36 |
*/ |
|
37 |
public int nIndexInGroup; |
|
38 |
/** |
|
39 |
事件ID编号 |
|
40 |
*/ |
|
41 |
public int nEventID; |
|
42 |
/** |
|
43 |
时间戳(单位是毫秒) |
|
44 |
*/ |
|
45 |
public double PTS; |
|
46 |
/** |
|
47 |
事件发生的时间(单位是秒) |
|
48 |
*/ |
|
49 |
public int UTC; |
|
50 |
/** |
|
51 |
事件时间(单位是毫秒) |
|
52 |
*/ |
|
53 |
public int UTCMS; |
|
54 |
/** |
|
55 |
实际检测到区域个数 |
|
56 |
*/ |
|
57 |
public int nDetectRegionNum; |
|
58 |
/** |
|
59 |
检测区域 |
|
60 |
*/ |
|
61 |
public NetSDKLib.DH_POINT[] stuDetectRegion=(NetSDKLib.DH_POINT[])new NetSDKLib.DH_POINT().toArray(20); |
|
62 |
/** |
|
63 |
事件触发的预置点号,从1开始, 没有该字段,表示预置点未知 |
|
64 |
*/ |
|
65 |
public int nPresetID; |
|
66 |
/** |
|
67 |
原始图 |
|
68 |
*/ |
|
69 |
public NetSDKLib.NET_INTELLIGENCE_IMAGE_INFO stuOriginalImage=new NetSDKLib.NET_INTELLIGENCE_IMAGE_INFO(); |
|
70 |
/** |
|
71 |
球机变到最小倍下的抓图 |
|
72 |
*/ |
|
73 |
public NetSDKLib.NET_INTELLIGENCE_IMAGE_INFO stuSceneImage=new NetSDKLib.NET_INTELLIGENCE_IMAGE_INFO(); |
|
74 |
/** |
|
75 |
保留字节 |
|
76 |
*/ |
|
77 |
public byte[] byReserved=new byte[1024]; |
|
78 |
} |