Skip to content

NET_SDK_IVE_IMAGEDESC_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_SDK_IVE_IMAGEDESC_T;
1
2
3
4
5
6
7
8
9
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_IVE_IMAGEDESC_T
{
    public UInt32 type;
    public UInt32 status;
    public UInt32 width;
    public UInt32 height;
    public UInt32 dataLen;
}

Function Description

Binocular statistical image information.

Member Description

Member Type Remark
type unsigned int 0,JPG;1,YUV
status unsigned int 0,INVALID;1,VALID;2,SAVED
width unsigned int Image Width
height unsigned int Image Height
dataLen unsigned int Image data length
Error Code