简要描述
  • 车牌信息主动上传回调

(1)数据格式:JSON格式(车牌汉字utf8编码)
(1)优先上报识别结果,图片另行上传到OSS
(2)上传识别结果记录中的图片路径,为上传OSS时图片的保存路径,并非OSS直接访问路径;

请求方式
  • POST
上报参数
字段名称 类型 取值范围 是否必须 描述
AlarmInfoPlate json 推送结果为车牌识别结果
serialno string 设备序列号,设备唯一
channel int [0, 100] 默认通道号(预留)
deviceName string 设备名称
ipaddr string 设备ip地址
result json 实际数据
PlateResult json 车牌识别结果信息
license string 车牌号字符串,如“京AAAAAA”
colorValue int [0, 32] (预留)
colorType int [0, 5] 车牌颜色 0:未知、1:蓝色、2:黄色、3:白色、4:黑色、5:绿色
type int [0, 19] 车牌类型 0:未知车牌:、1:蓝牌小汽车、2::黑牌小汽车、3:单排黄牌、4:双排黄牌、 5:警车车牌、6:武警车牌、7:个性化车牌、8:单排军车牌、9:双排军车牌、10:使馆车牌、11:香港进出中国大陆车牌、12:农用车牌、13:教练车牌、14:澳门进出中国大陆车牌、15:双层武警车牌、16:武警总队车牌、17:双层武警总队车牌、18:民航车牌、19:新能源车牌
confidence int [0, 100] 识别结果可信度 1-100
bright int 亮度评价(预留)
direction int [0, 4] 车的行进方向,0:未知,1:左,2:右,3:上, 4:下
location json 车牌在图片中位置
RECT json 位置为矩形区域;left\right\top\bottom:车牌在图片中位置
timeUsed int 识别所用时间
carBright int 车身亮度(预留)
carColor int 车身颜色(预留)
timeStamp json 识别结果对应帧的时间戳
Timeval json 时间戳结构体类型
sec uint32 从1970年1月1日到对应帧的秒
dechour int [0, 60] 时间,小时
decmin Int [0, 60] 时间,分钟
decsec Int [0, 60] 时间,秒
decday Int [0, 31] 时间,天
decmon Int [0, 12] 时间,月
decyear Int [0, 2038] 时间,年
usec uint32 从1970年1月1日到对应帧的毫秒
triggerType int [1, 8] 当前结果的触发类型:1:自动触发类型、2:外部输入触发(IO输入)、4:软件触发(SDK)、8:虚拟线圈触发
imagePath string 识别大图片的路径
plateid unsigned int 识别结果车牌ID
plate_true_width int [10, 1000] 车牌真实宽度
plate_distance int [0, 1000] 车牌距离
is_fake_plate int [0, 1] 是否伪车牌,0:真实车牌,1:伪车牌
car_location 车头位置
car_brand 车辆品牌
brand int [0, 128] 车辆品牌
year int [0, 65535] 车辆年份
type int [0, 128] 车辆类型
feature_Code string 长度[0, 20] 车辆特征码
请求示例
 {
  "AlarmInfoPlate": {
    "channel": 0,
    "deviceName": "",
    "ipaddr": "192.168.22.2",
    "result": {
      "PlateResult": {
        "car_brand": {
          "brand": 255,
          "year": 65535,
          "type": 255
        },
        "bright": 0,
        "carBright": 0,
        "carColor": 255,
        "colorType": 1,
        "colorValue": 0,
        "confidence": 94,
        "direction": 4,
        "imagePath": "picture/0/0f823866-d2dc45ab/20220228/23/20220228_235959_638.jpg",
        "license": "鲁VF0050",
        "location": {
          "RECT": {
            "bottom": 363,
            "left": 335,
            "right": 474,
            "top": 312
          }
        },
        "timeStamp": {
          "Timeval": {
            "decday": 28,
            "dechour": 23,
            "decmin": 59,
            "decmon": 2,
            "decsec": 59,
            "decyear": 2022,
            "sec": 1646063999,
            "usec": 638740
          }
        },
        "timeUsed": 0,
        "triggerType": 8,
        "type": 1,
        "plateid": 90813
      }
    },
    "serialno": "0f823866-d2dc45ab"
  }
}
作者:郭祥西  创建时间:2024-03-27 17:10
最后编辑:郭祥西  更新时间:2024-11-07 15:18