Skip to content

NET_DVR_IVE_VFD_RESULT_HEAD_T

Structure Definition

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
typedef struct
{
    LONGLONG time;                  
    LONGLONG relativeTime;          
    unsigned int detectDataLen;     
    unsigned int softwareVersion;   
    unsigned int softwareBuildDate; 
    unsigned int faceCnt;           
    unsigned int faceDataLen[40];   
} NET_DVR_IVE_VFD_RESULT_HEAD_T;
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_DVR_IVE_VFD_RESULT_HEAD_T
{
    public Int64 time;
    public Int64 relativeTime;
    public UInt32 detectDataLen;
    public UInt32 softwareVersion;
    public UInt32 softwareBuildDate;
    public UInt32 faceCnt;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U4, SizeConst = 40)]
    public UInt32[] faceDataLen;
}

Function Description

Face detection result data header structure.

Member Description

Member Type Remark
time LONGLONG Detect the current time of the source data in microseconds.
relativeTime LONGLONG Detect source data relative time, microsecond level.
detectDataLen unsigned int Check the source data length.
softwareVersion unsigned int Software version number, 0xABCDEFGH, AB: manufacturer CD: main version EFGH: sub-version Manufacturer 1: Omron Version: V5.00.
softwareBuildDate unsigned int Software generation date, 0xYYYYMMDD.
faceCnt unsigned int The maximum number of faces is 40.
faceDataLen unsigned int[40] The length of each face.
Error Code