Skip to content

NET_SDK_IVE_PASSLINECOUNT_T

Structure Definition

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

Function Description

Line statistics message.

Member Description

Member Type Remark
enterCarCount unsigned int The number of cars entering.
enterPersonCount unsigned int The number of people entering.
enterBikeCount unsigned int The number of bicycles entering.
leaveCarCount unsigned int The number of cars that left.
leavePersonCount unsigned int The number of people who left.
leaveBikeCount unsigned int Number of bicycles leaving
existCarCount unsigned int The number of cars in progress.
existPersonCount unsigned int The number of people who are.
existBikeCount unsigned int The number of bicycles in use.
count unsigned int The total number, that is, the number of passLineInfo.
passLineInfo NET_SDK_IVE_PASSLINECOUNT_INFO_T[32] List of line analysis results.
chlId GUID The GUID of the channel.
Error Code