Skip to content

VEHICE_PLATE_INFO

Structure Definition

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

Function Description

License plate information.

Member Description

Member Type Remark
dwPlateID unsigned int License plate ID, used for identification.
dwEncryptVer unsigned int Encrypted version.
plateCharCount unsigned int Number of license plate characters.
plate char[64] License plate number, utf8 encoding.
Rect16 RECT_16 License plate rectangular frame.
plateConfidence unsigned int Confidence.
plateIntensity unsigned int License plate brightness.
plateColor unsigned char License plate color, 1-blue 2-black 3-yellow 4-white 5-green 6-red 7-grey 8-purple (KISE).
plateStyle unsigned char Vehicle type.
PlateColorRate unsigned char Color matching degree.
vehicleColor unsigned char Body color.
dwBrand unsigned int Vehicle brand.
owner char[32] Name of the owner.
listType int List type.
dwStartTime unsigned int Start time The number of seconds since 1970.
dwEndTime unsigned int End time.
chlId GUID Channel GUID.
Error Code