怎样修改代码,去掉颜色的识别率private static void exec(File f, PlateFileEntity entity) { //这里用api的准确结果 String s = PlateUtil.licensePlate(f.getAbsolutePath()); JSONObject jsonObject = JSONObject.parseObject(s); String words_result = JSON.toJSONString(jsonObject.get("words_result")); System.out.println(words_result); JSONObject object = JSONObject.parseObject(words_result); Object number = object.get("number"); Object color = object.get("color"); entity.setRecoPlate(number.toString()); entity.setRecoColor(color.toString()); }
时间: 2024-03-31 16:35:33 浏览: 52
39.(cesium篇)cesium去掉entity的默认双击追踪(trackedEntity).zip
5星 · 资源好评率100%
要去掉颜色的识别率,需要修改代码中的以下部分:
将代码中的`Object color = object.get("color");`改为`Object color = null;`,即不再获取颜色信息。
修改后的代码如下:
private static void exec(File f, PlateFileEntity entity) {
//这里用api的准确结果
String s = PlateUtil.licensePlate(f.getAbsolutePath());
JSONObject jsonObject = JSONObject.parseObject(s);
String words_result = JSON.toJSONString(jsonObject.get("words_result"));
System.out.println(words_result);
JSONObject object = JSONObject.parseObject(words_result);
Object number = object.get("number");
Object color = null;
entity.setRecoPlate(number.toString());
entity.setRecoColor(color.toString());
}
阅读全文