跳转至

VEHICE_PLATE_INFO

结构体定义

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
typedef struct
{
    unsigned int dwPlateID;       
    unsigned int dwEncryptVer;    
    unsigned int plateCharCount;  
    char plate[64];               
    RECT_16 Rect16;               
    unsigned int plateConfidence; 
    unsigned int plateIntensity;  
    unsigned char plateColor;     
    unsigned char plateStyle;     
    unsigned char PlateColorRate; 
    unsigned char vehicleColor;   
    unsigned int dwBrand;         
    char owner[32];               
    int listType;                 
    unsigned int dwStartTime;     
    unsigned int dwEndTime;       
    GUID chlId;                   
} VEHICE_PLATE_INFO;
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct VEHICE_PLATE_INFO
{
    public UInt32 dwPlateID;
    public UInt32 dwEncryptVer;
    public UInt32 plateCharCount;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 64)]
    public byte[] plate;
    public RECT_16 Rect16;
    public UInt32 plateConfidence;
    public UInt32 plateIntensity;
    public byte plateColor;
    public byte plateStyle;
    public byte PlateColorRate;
    public byte vehicleColor;
    public UInt32 dwBrand;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 32)]
    public byte[] owner;
    public Int32 listType;
    public UInt32 dwStartTime;
    public UInt32 dwEndTime;
    public GUID chlId;
}

功能描述

车牌信息。

成员说明

成员 类型 备注
dwPlateID unsigned int 车牌ID,作为标识用。
dwEncryptVer unsigned int 加密版本。
plateCharCount unsigned int 车牌字符个数。
plate char[64] 车牌号码, utf8编码。
Rect16 RECT_16 车牌矩形框。
plateConfidence unsigned int 置信度。
plateIntensity unsigned int 车牌亮度。
plateColor unsigned char 车牌颜色,1-蓝色 2-黑色 3-黄色 4-白色 5-绿色 6-红色 7-灰色 8-紫色(KISE)。
plateStyle unsigned char 车辆类型。
PlateColorRate unsigned char 颜色匹配程度。
vehicleColor unsigned char 车身颜色。
dwBrand unsigned int 车辆品牌。
owner char[32] 车主名。
listType int 名单类型。
dwStartTime unsigned int 开始时间 1970年开始的秒数。
dwEndTime unsigned int 结束时间。
chlId GUID 通道GUID。
错误码