Skip to content

NET_SDK_TRAIECT_RECT

Structure Definition

1
2
3
4
5
6
7
typedef struct _traject_Rect
{
    GUID            nodeChlID;      
    unsigned int    count;          
    RECTANGLE       rect[32];       
    unsigned char   byReserve[124]; 
}NET_SDK_TRAIECT_RECT;
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_TRAIECT_RECT
{
    public GUID nodeChlID;
    public UInt32 count;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.Struct, SizeConst = 32)]
    public RECTANGLE[] rect;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 124)]
    public byte[] byReserve;
}

Function Description

Target tracking rectangle.

Member Description

Member Type Remark
nodeChlID GUID Refers to the ID of the channel node.
count unsigned int Number.
rect RECTANGLE[32] The target rectangle.
byReserve unsigned char[124] Keep fields, align.
Error Code