Skip to content

NET_SDK_IVE_VSD_TARGET_INFO

Structure Definition

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
typedef struct
{
    unsigned int targetId;                    
    unsigned int targetType;                  
    unsigned int dataLen;                     
    RECTANGLE pos;                            
    int width;                                
    int height;                               
    int picFormat;                            
    NET_SDK_IVE_VSD_TARGET_UNION targetUnion; 
} NET_SDK_IVE_VSD_TARGET_INFO;
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_IVE_VSD_TARGET_INFO
{
    public UInt32 targetId;
    public UInt32 targetType;
    public UInt32 dataLen;
    public RECTANGLE pos;
    public Int32 width;
    public Int32 height;
    public Int32 picFormat;
    public NET_SDK_IVE_VSD_TARGET_UNION targetUnion;
}

Function Description

Secondary structure target information.

Member Description

Member Type Remark
targetId unsigned int Target ID.
targetType unsigned int Attribute type, 1: person; 2: car; 4: bike.
dataLen unsigned int Target image data length.
pos RECTANGLE The target rectangle.
width int Image width.
height int Picture high...
picFormat int Image format, 0: JPG; 1: YUV
targetUnion NET_SDK_IVE_VSD_TARGET_UNION Target attributes.
Error Code