更新 README.md

This commit is contained in:
2025-09-16 15:16:15 +08:00
parent 289c782803
commit 16857283b0

View File

@@ -25,3 +25,40 @@ PP-OCRv4模型
```bash
./run_in_docker.sh python3 app.py
```
http接口如下
```
post /predict
Content-Type: application/json
# Request body:
{
files={'image': f},
data= {'image_name': "test.jpg"} # 图片文件名
}
# Response:
{
"success": True,
"result": [] #json_list
}
```
json_list格式如下
```json
[
{
"bbox": [0, 0, 100, 200], // 分别[左上角x左上角y右下角x右下角y]
"type": "", // 图片区域的类型,目前仅支持 Title
"content": "今天", // 不同类型的内容不同,但都是“块”里的内容,目前为文本内容
"page": 1, // 目前都是1
"score": 0.9 // 版面分析,划出该 bbox 的 confidence 分数
}
]
```
- python请求示例
```python
f = open(local_image_path, "rb")
res = requests.post(f"http://127.0.0.1:8080/predict", files={'image': f},data={'image_name': "a.jpg"}).json()
```