介绍
基于 Django + OpenCV + Tensorflow 实现的车牌识别及训练系统。
环境
依赖:python 3.7、tensorflow 2.2.2、opencv 4.5.1.48、Django 3.2
Java 代码集成
提供了开放的 API,只需要传入车牌文件路径即可进行车牌识别操作,记得引入 Hutool 额。
HttpResponse response = HttpRequest.post(url)
.form("licensePlate", new File(imagePath))
.executeAsync();
System.out.println(response.body());
返回数据格式:
{"status": true, "license_plate": "苏E·05EV8"}
Web 演示
项目源码:https://gitee.com/52itstyle/Python