---
panlei
2019-11-21 a1d765f4e170b6fa5b04e39bc57320106f68a66d
---
1个文件已修改
9 ■■■■■ 已修改文件
insertdata/insertDataToEs.go 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
insertdata/insertDataToEs.go
@@ -754,11 +754,10 @@
    case "plate":
        // 车牌运动方向,0 unknown, 1 left, 2 right, 3 up, 4 down
        logger.Info("车辆车牌信息:", obj.Car.NColor, obj.Car.NCarColor, obj.Car.NCarLogo, obj.Car.NCarType, obj.Car.NDirection)
        lable = obj.Car.License + "/" + cache.GetDic("nColor"+strconv.Itoa(int(obj.Car.NColor))) + "车牌" + "/" +
            cache.GetDic("nCarColor"+strconv.Itoa(int(obj.Car.NCarColor))) + "车辆" + "/" + "品牌:" + cache.GetDic("nCarLogo"+strconv.Itoa(int(obj.Car.NCarLogo))) + "/" + "型号:" + cache.GetDic("nCarType"+strconv.Itoa(int(obj.Car.NCarType)))
        lableAttach = "运动方向:" + cache.GetDic("nDirection"+strconv.Itoa(int(obj.Car.NDirection))) + "/" + "车牌置信度:" + strconv.Itoa(int(obj.Car.NConfidence)) + "/" +
            "车牌亮度:" + strconv.Itoa(int(obj.Car.NBright)) + "/" + "车的亮度:" + strconv.Itoa(int(obj.Car.NCarBright)) + "/" + "识别时间:" + strconv.Itoa(int(obj.Car.NTime))
        lable = obj.Car.License + "/" + cache.GetDic("nVehicleColor1"+strconv.Itoa(int(obj.Car.NVehicleColor1))) + "车辆" + "/" +
            "品牌:" +obj.Car.VehicleType1+"/"+cache.GetDic("nColor"+strconv.Itoa(int(obj.Car.NColor))) + "车牌"
        lableAttach = "车牌置信度:" + strconv.Itoa(int(obj.Car.NConfidence)) + "/" + "车的亮度:" + strconv.Itoa(int(obj.Car.NVehicleBright)) +"/"+ "车牌类型"+cache.GetDic("nType"+strconv.Itoa(int(obj.Car.NType)))+
            "车身辅颜色:"+cache.GetDic("nVehicleColor2"+strconv.Itoa(int(obj.Car.NVehicleColor2)))+"/"+"是否识别到车牌:"+cache.GetDic("nVehicleColor1"+strconv.Itoa(int(obj.Car.NVehicleColor1)))+"/"+"车辆置信度"+strconv.Itoa(int(obj.Score))
    }
    return lable, lableAttach
}