跳转至

NET_SDK_IVE_VSD_PICTURE_INFO

结构体定义

1
2
3
4
5
6
7
typedef struct
{
    int iWidth;     
    int iHeight;    
    int iPicFormat; 
    int iPicSize;   
} NET_SDK_IVE_VSD_PICTURE_INFO;
1
2
3
4
5
6
7
8
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_IVE_VSD_PICTURE_INFO
{
    public Int32 iWidth;
    public Int32 iHeight;
    public Int32 iPicFormat;
    public Int32 iPicSize;
}

功能描述

视频二级结构化图像结构体。

成员说明

成员 类型 备注
iWidth int 图片宽。
iHeight int 图片高。
iPicFormat int 图片格式,0:JPG;1:YUV
iPicSize int 图片大小。
错误码