跳转至

NET_SDK_IVE_RECT_T

结构体定义

1
2
3
4
5
6
7
typedef struct
{
    unsigned int X1; 
    unsigned int Y1; 
    unsigned int X2; 
    unsigned int Y2; 
} NET_SDK_IVE_RECT_T;
1
2
3
4
5
6
7
8
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_IVE_RECT_T
{
    public UInt32 X1;
    public UInt32 Y1;
    public UInt32 X2;
    public UInt32 Y2;
}

功能描述

目标矩形框。

成员说明

成员 类型 备注
X1 unsigned int 左上角x坐标。
Y1 unsigned int 左上角y坐标。
X2 unsigned int 右下角x坐标。
Y2 unsigned int 右下角y坐标。
错误码