Appearance
车牌智能识别 #
功能简介 #
随着智能化水平的不断提升,社区、商区、园区的停车场管理及道路上的车牌管理可以采用智能化手段代替人力。车牌智能识别是对图像区域内的车辆进行检测并自动识别车辆车牌号码,将号码信息返回给管理人员进行监测和管理,可提升管理效率。
应用场景 #
- 社区
- 园区
- 学校
- 城市道路
能力优势 #
- 实时检测
- 准确率高
- 可对接多种客户端
功能展示 #
接口说明 #
车牌智能识别图片有三种传入方式,分别是url/file/baseLs,优先级顺序为file>baseLs>url. 三个参数至少传入一个
请求格式
URL /statical/api/v1/obj-detect/vehicle-license-recon Method POST 请求头说明
Key Value Content-Type multipart/form-data 请求参数
Key Require Type Description url N string URL链接 file N file 二进制文件 baseLs N string BASE64编码 points Y string 检测框字符串 请求示例
"baseLs": "iVBORw0KGgoAAA...",
"points": "[[{\"x\":26,\"y\":87},...]]"
返回参数
Key Require Type Description status Y int 响应状态码 message Y string 提示消息 data Y obj 检测结果 +rs Y string 车牌号 +confidence Y float 置信度 +x Y int X坐标 +y Y int Y坐标 +width Y int 宽度 +heigh Y int 高度 返回示例
{
"status": 200,
"message": "检测成功",
"data": [
{
"x": 10,
"y": 20,
"width": 100,
"height": 35,
"rs": "车牌号",
"confidence": 0.98
}
]
}