跳转至

NET_SDK_IVE_TRAFFIC_T

结构体定义

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
typedef struct
{
    int enterCarCount;                      
    int enterPersonCount;                   
    int enterBikeCount;                     
    int leaveCarCount;                      
    int leavePersonCount;                   
    int leaveBikeCount;                     
    int existCarCount;                      
    int existPersonCount;                   
    int existBikeCount;                     
    unsigned int count;                     
    NET_SDK_IVE_TRAFFIC_INFO_T aoiInfo[32]; 
} NET_SDK_IVE_TRAFFIC_T;
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_IVE_TRAFFIC_T
{
    public Int32 enterCarCount;
    public Int32 enterPersonCount;
    public Int32 enterBikeCount;
    public Int32 leaveCarCount;
    public Int32 leavePersonCount;
    public Int32 leaveBikeCount;
    public Int32 existCarCount;
    public Int32 existPersonCount;
    public Int32 existBikeCount;
    public UInt32 count;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.Struct, SizeConst = 32)]
    public NET_SDK_IVE_TRAFFIC_INFO_T[] aoiInfo;
}

功能描述

流量统计结果。

成员说明

成员 类型 备注
enterCarCount int 进入区域的车的辆数量。
enterPersonCount int 进入区域的人的数量。
enterBikeCount int 进入区域的自行车的数量。
leaveCarCount int 离开区域的车的辆数量。
leavePersonCount int 离开区域的人的数量。
leaveBikeCount int 离开区域的自行车的辆数量。
existCarCount int 正在区域的车的数量。
existPersonCount int 正在区域的人的数量。
existBikeCount int 正在区域的自行车的数量。
count unsigned int 总数量,即aoiInfo的数量。
aoiInfo NET_SDK_IVE_TRAFFIC_INFO_T[32] 流量统计分析结果列表。
错误码