Skip to content

NET_DVR_IVE_VFD_RESULT_DATA_INFO_T

Structure Definition

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

Function Description

Face detection image structure.

Member Description

Member Type Remark
type unsigned int Image data type, 0: JPG; 1: YUV.
status unsigned int Status, 0: invalid; 1: valid; 2: saved.
width unsigned int Image width.
height unsigned int Image height.
dataLen unsigned int Image data length.
Error Code