提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
4 |
import com.sun.jna.Pointer; |
|
5 |
|
|
6 |
/** |
|
7 |
* @author 260611 |
|
8 |
* @description 事件类型EVENT_IVS_GENEAL_ATTITUDE (通用姿态行为事件)对应的数据块描述信息 |
|
9 |
* @origin autoTool |
|
10 |
* @date 2023/07/11 10:31:09 |
|
11 |
*/ |
|
12 |
public class DEV_EVENT_GENEAL_ATTITUDE_INFO extends NetSDKLib.SdkStructure { |
|
13 |
/** |
|
14 |
* 通道号 |
|
15 |
*/ |
|
16 |
public int nChannelID; |
|
17 |
/** |
|
18 |
* 0:脉冲,1:开始, 2:停止 |
|
19 |
*/ |
|
20 |
public int nAction; |
|
21 |
/** |
|
22 |
* 事件名称 |
|
23 |
*/ |
|
24 |
public byte[] szName = new byte[128]; |
|
25 |
/** |
|
26 |
* 时间戳(单位是毫秒) |
|
27 |
*/ |
|
28 |
public double dbPTS; |
|
29 |
/** |
|
30 |
* 事件发生的时间 |
|
31 |
*/ |
|
32 |
public NET_TIME_EX stuUTC = new NET_TIME_EX(); |
|
33 |
/** |
|
34 |
* 事件ID |
|
35 |
*/ |
|
36 |
public int nEventID; |
|
37 |
/** |
|
38 |
* 智能事件所属大类 |
|
39 |
*/ |
|
40 |
public byte[] szClass = new byte[16]; |
|
41 |
/** |
|
42 |
* 事件时间毫秒数 |
|
43 |
*/ |
|
44 |
public int nUTCMS; |
|
45 |
/** |
|
46 |
* 检测目标的物体个数 |
|
47 |
*/ |
|
48 |
public int nObjectCount; |
|
49 |
/** |
|
50 |
* 检测目标的物体信息 |
|
51 |
*/ |
|
52 |
public NetSDKLib.DH_MSG_OBJECT[] stuObjects = new NetSDKLib.DH_MSG_OBJECT[128]; |
|
53 |
/** |
|
54 |
* 全景广角图 |
|
55 |
*/ |
|
56 |
public NetSDKLib.SCENE_IMAGE_INFO stuSceneImage = new NetSDKLib.SCENE_IMAGE_INFO(); |
|
57 |
/** |
7412dd
|
58 |
* 姿态类型 {@link com.iailab.netsdk.lib.enumeration.NET_EM_ATTITUDE_TYPE} |
149dd0
|
59 |
*/ |
H |
60 |
public int emAttitudeType; |
|
61 |
/** |
|
62 |
* 智能事件规则编号 |
|
63 |
*/ |
|
64 |
public int nRuleID; |
|
65 |
/** |
|
66 |
* 图片信息个数 |
|
67 |
*/ |
|
68 |
public int nImageInfoNum; |
|
69 |
/** |
|
70 |
* 图片信息数组 |
|
71 |
*/ |
|
72 |
public Pointer pstuImageInfo; |
|
73 |
/** |
|
74 |
* 保留字节,留待扩展 |
|
75 |
*/ |
|
76 |
public byte[] szReserved = new byte[1016-NetSDKLib.POINTERSIZE]; |
|
77 |
|
|
78 |
public DEV_EVENT_GENEAL_ATTITUDE_INFO() { |
|
79 |
for (int i = 0; i < stuObjects.length; i++) { |
|
80 |
stuObjects[i] = new NetSDKLib.DH_MSG_OBJECT(); |
|
81 |
} |
|
82 |
} |
|
83 |
} |