跳转至

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

功能描述

双目统计图像信息。

成员说明

成员 类型 备注
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 图像数据长度
错误码