跳转至

NET_SDK_IVE_VSD_TARGET_INFO

结构体定义

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

功能描述

二级结构化目标信息。

成员说明

成员 类型 备注
targetId unsigned int 目标ID。
targetType unsigned int 属性类型,1:person;2:car;4:bike。
dataLen unsigned int 目标图数据长度。
pos RECTANGLE 目标矩形框。
width int 图片宽.。
height int 图片高.。
picFormat int 图片格式,0:JPG;1:YUV
targetUnion NET_SDK_IVE_VSD_TARGET_UNION 目标属性。
错误码