跳转至

NET_DVR_IVE_VFD_RESULT_HEAD_T

结构体定义

 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;
}

功能描述

人脸侦测结果数据头结构体。

成员说明

成员 类型 备注
time LONGLONG 检测源数据当前时间,微秒级。
relativeTime LONGLONG 检测源数据相对时间,微秒级。
detectDataLen unsigned int 检测源数据长度。
softwareVersion unsigned int 软件版本号, 0xABCDEFGH,AB:厂家 CD:主版本 EFGH:子版本 厂商 1:欧姆龙 版本:V5.00。
softwareBuildDate unsigned int 软件生成日期,0xYYYYMMDD。
faceCnt unsigned int 人脸的个数,最大40个。
faceDataLen unsigned int[40] 每个人脸的长度。
错误码