Skip to content

NET_SDK_IVE_BINOCULARCOUNT_T

Structure Definition

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
typedef struct
{
    unsigned int enterPersonCount;              
    unsigned int enterChildCount;               
    unsigned int leavePersonCount;              
    unsigned int leaveChildCount;               
    unsigned int existPersonCount;              
    unsigned int existChildCount;               
    unsigned int globalEnterChildCounter;       
    unsigned int globalEnterPersonCounter;      
    unsigned int globalLeaveChildCounter;       
    unsigned int globalLeavePersonCounter;      
    unsigned long long releativePts;            
}NET_SDK_IVE_BINOCULARCOUNT_T;
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_IVE_BINOCULARCOUNT_T
{
    public UInt32 enterPersonCount;
    public UInt32 enterChildCount;
    public UInt32 leavePersonCount;
    public UInt32 leaveChildCount;
    public UInt32 existPersonCount;
    public UInt32 existChildCount;
    public UInt32 globalEnterChildCounter;
    public UInt32 globalEnterPersonCounter;
    public UInt32 globalLeaveChildCounter;
    public UInt32 globalLeavePersonCounter;
    public UInt64 releativePts;
}

Function Description

Binocular statistics.

Member Description

Member Type Remark
enterPersonCount unsigned int Number of people entering (adults + children), same as osd display
enterChildCount unsigned int Enter the number of children, same as osd display
leavePersonCount unsigned int Number of people leaving (adults + children), same as osd display
leaveChildCount unsigned int Number of children leaving, same as osd display
existPersonCount unsigned int Number of people retained (adults + children), same as osd display
existChildCount unsigned int Number of retained children, same as osd display
globalEnterChildCounter unsigned int The total number of children entering the site is accumulated, which is convenient for the docking party to do incremental calculation
globalEnterPersonCounter unsigned int The total number of people entering (adults + children) is accumulated to facilitate incremental calculation by the docking party
globalLeaveChildCounter unsigned int The total number of children who leave the school is accumulated, which is convenient for the docking party to do incremental calculation
globalLeavePersonCounter unsigned int The total number of people who have left (adults + children) is accumulated, which is convenient for the docking party to do incremental calculation
releativePts unsigned long long Relative timestamp
Error Code