Skip to content

NET_SDK_PASSLINE_PICTURE_INFO

Structure Definition

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

Function Description

Tripwire detection image information structure.

Member Description

Member Type Remark
iWidth int Image width.
iHeight int Picture high.
iPicFormat int Image format. 0: JPG; 1: YUV.
iPicSize int Image size.
Error Code