跳转至

NET_SDK_VFD_CONFIG

结构体定义

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
typedef struct _net_sdk_Vfd_Config
{
    unsigned int bSwitch;           
    unsigned int alarmHoldTime;     
    unsigned int saveFacePicture;   
    unsigned int saveSourcePicture; 
    unsigned int rectangleNum;      
    RECTANGLE rectangle;            
    unsigned char resv[40];         
} NET_SDK_VFD_CONFIG;
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_VFD_CONFIG
{
    public UInt32 bSwitch;
    public UInt32 alarmHoldTime;
    public UInt32 saveFacePicture;
    public UInt32 saveSourcePicture;
    public UInt32 rectangleNum;
    public RECTANGLE rectangle;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 40)]
    public byte[] resv;
}

功能描述

人脸识别配置结构体。

成员说明

成员 类型 备注
bSwitch unsigned int 使能,0 or 1。
alarmHoldTime unsigned int 报警持续时间。
saveFacePicture unsigned int 保存人脸检测脸图片。
saveSourcePicture unsigned int 保存人脸检测源图片。
rectangleNum unsigned int 矩形框数量。
rectangle RECTANGLE 矩形框。
resv unsigned char[40] 预留字段。
错误码