跳转至

NET_DVR_IVE_VFD_RESULT_DATA_INFO_T

结构体定义

1
2
3
4
5
6
7
8
typedef struct
{
    unsigned int type;    
    unsigned int status;  
    unsigned int width;   
    unsigned int height;  
    unsigned int dataLen; 
} NET_DVR_IVE_VFD_RESULT_DATA_INFO_T;
1
2
3
4
5
6
7
8
9
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_DVR_IVE_VFD_RESULT_DATA_INFO_T
{
    public UInt32 type;
    public UInt32 status;
    public UInt32 width;
    public UInt32 height;
    public UInt32 dataLen;
}

功能描述

人脸侦测图片结构体。

成员说明

成员 类型 备注
type unsigned int 图片数据类型,0:JPG; 1:YUV。
status unsigned int 状态,0:invalid; 1:valid; 2:saved。
width unsigned int 图片宽度。
height unsigned int 图片高度。
dataLen unsigned int 图片数据长度。
错误码