跳转至

NET_SDK_PASSLINE_PICTURE_INFO

结构体定义

1
2
3
4
5
6
7
typedef struct NET_SDK_PASSLINE_PICTURE_INFO_T
{
    int iWidth;     
    int iHeight;    
    int iPicFormat; 
    int iPicSize;   
} NET_SDK_PASSLINE_PICTURE_INFO;
1
2
3
4
5
6
7
8
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_PASSLINE_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 图片大小。
错误码