quickstart.md 10.7 KB
Newer Older
文幕地方's avatar
文幕地方 已提交
1 2
# PP-Structure 快速开始

M
MissPenguin 已提交
3
- [1. 准备环境](#1-准备环境)
文幕地方's avatar
文幕地方 已提交
4 5
- [2. 便捷使用](#2-便捷使用)
  - [2.1 命令行使用](#21-命令行使用)
6
    - [2.1.1 图像方向分类+版面分析+表格识别](#211-图像方向分类版面分析表格识别)
文幕地方's avatar
文幕地方 已提交
7
    - [2.1.2 版面分析+表格识别](#212-版面分析表格识别)
8 9
    - [2.1.3 版面分析](#213-版面分析)
    - [2.1.4 表格识别](#214-表格识别)
littletomatodonkey's avatar
littletomatodonkey 已提交
10
    - [2.1.5 关键信息抽取](#215-关键信息抽取)
A
an1018 已提交
11
    - [2.1.6 版面恢复](#216-版面恢复)
M
MissPenguin 已提交
12 13
  - [2.2 Python脚本使用](#22-Python脚本使用)
    - [2.2.1 图像方向分类+版面分析+表格识别](#221-图像方向分类版面分析表格识别)
14 15 16
    - [2.2.2 版面分析+表格识别](#222-版面分析表格识别)
    - [2.2.3 版面分析](#223-版面分析)
    - [2.2.4 表格识别](#224-表格识别)
littletomatodonkey's avatar
littletomatodonkey 已提交
17
    - [2.2.5 关键信息抽取](#225-关键信息抽取)
A
an1018 已提交
18
    - [2.2.6 版面恢复](#226-版面恢复)
文幕地方's avatar
文幕地方 已提交
19 20
  - [2.3 返回结果说明](#23-返回结果说明)
    - [2.3.1 版面分析+表格识别](#231-版面分析表格识别)
littletomatodonkey's avatar
littletomatodonkey 已提交
21
    - [2.3.2 关键信息抽取](#232-关键信息抽取)
文幕地方's avatar
文幕地方 已提交
22
  - [2.4 参数说明](#24-参数说明)
M
MissPenguin 已提交
23
- [3. 小结](#3-小结)
M
update  
MissPenguin 已提交
24 25

<a name="1"></a>
M
MissPenguin 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
## 1. 准备环境
### 1.1 安装PaddlePaddle
> 如果您没有基础的Python运行环境,请参考[运行环境准备](../../doc/doc_ch/environment.md)。

- 您的机器安装的是CUDA9或CUDA10,请运行以下命令安装

  ```bash
  python3 -m pip install paddlepaddle-gpu -i https://mirror.baidu.com/pypi/simple
  ```

- 您的机器是CPU,请运行以下命令安装

  ```bash
  python3 -m pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple
  ```

更多的版本需求,请参照[飞桨官网安装文档](https://www.paddlepaddle.org.cn/install/quick)中的说明进行操作。

### 1.2 安装PaddleOCR whl包
文幕地方's avatar
文幕地方 已提交
45 46

```bash
A
an1018 已提交
47
# 安装 paddleocr,推荐使用2.6版本
文幕地方's avatar
文幕地方 已提交
48
pip3 install "paddleocr>=2.6.0.3"
M
MissPenguin 已提交
49

A
an1018 已提交
50
# 安装 图像方向分类依赖包paddleclas(如不需要图像方向分类功能,可跳过)
文幕地方's avatar
文幕地方 已提交
51
pip3 install paddleclas>=2.4.3
文幕地方's avatar
文幕地方 已提交
52 53
```

M
update  
MissPenguin 已提交
54
<a name="2"></a>
A
an1018 已提交
55

文幕地方's avatar
文幕地方 已提交
56 57
## 2. 便捷使用

M
update  
MissPenguin 已提交
58 59
<a name="21"></a>
### 2.1 命令行使用  
60

M
update  
MissPenguin 已提交
61
<a name="211"></a>
62 63
#### 2.1.1 图像方向分类+版面分析+表格识别
```bash
M
MissPenguin 已提交
64
paddleocr --image_dir=ppstructure/docs/table/1.png --type=structure --image_orientation=true
65 66 67
```

<a name="212"></a>
文幕地方's avatar
文幕地方 已提交
68
#### 2.1.2 版面分析+表格识别
文幕地方's avatar
文幕地方 已提交
69
```bash
M
MissPenguin 已提交
70
paddleocr --image_dir=ppstructure/docs/table/1.png --type=structure
文幕地方's avatar
文幕地方 已提交
71 72
```

73 74
<a name="213"></a>
#### 2.1.3 版面分析
75
```bash
M
MissPenguin 已提交
76
paddleocr --image_dir=ppstructure/docs/table/1.png --type=structure --table=false --ocr=false
77 78
```

79 80
<a name="214"></a>
#### 2.1.4 表格识别
81
```bash
M
MissPenguin 已提交
82
paddleocr --image_dir=ppstructure/docs/table/table.jpg --type=structure --layout=false
83 84
```

85
<a name="215"></a>
A
an1018 已提交
86

A
an1018 已提交
87
#### 2.1.5 关键信息抽取
M
MissPenguin 已提交
88
关键信息抽取暂不支持通过whl包调用,详细使用教程请参考:[关键信息抽取教程](../kie/README_ch.md)
文幕地方's avatar
文幕地方 已提交
89

A
an1018 已提交
90 91 92 93
<a name="216"></a>

#### 2.1.6 版面恢复

A
an1018 已提交
94 95 96 97 98 99 100 101 102 103 104 105 106
版面恢复分为2种方法,详细介绍请参考:[版面恢复教程](../recovery/README_ch.md)

- PDF解析
- OCR技术

通过PDF解析(只支持pdf格式的输入):

```bash
paddleocr --image_dir=ppstructure/recovery/UnrealText.pdf --type=structure --recovery=true --use_pdf2docx_api=true
```

通过OCR技术:

A
an1018 已提交
107
```bash
A
an1018 已提交
108
# 中文测试图
M
MissPenguin 已提交
109
paddleocr --image_dir=ppstructure/docs/table/1.png --type=structure --recovery=true
A
an1018 已提交
110 111
# 英文测试图
paddleocr --image_dir=ppstructure/docs/table/1.png --type=structure --recovery=true --lang='en'
A
an1018 已提交
112 113
# pdf测试文件
paddleocr --image_dir=ppstructure/recovery/UnrealText.pdf --type=structure --recovery=true --lang='en'
A
an1018 已提交
114 115
```

M
update  
MissPenguin 已提交
116
<a name="22"></a>
A
an1018 已提交
117

M
MissPenguin 已提交
118
### 2.2 Python脚本使用
文幕地方's avatar
文幕地方 已提交
119

M
update  
MissPenguin 已提交
120
<a name="221"></a>
A
an1018 已提交
121
#### 2.2.1 图像方向分类+版面分析+表格识别
M
update  
MissPenguin 已提交
122

文幕地方's avatar
文幕地方 已提交
123 124 125 126 127
```python
import os
import cv2
from paddleocr import PPStructure,draw_structure_result,save_structure_res

128
table_engine = PPStructure(show_log=True, image_orientation=True)
文幕地方's avatar
文幕地方 已提交
129

130
save_folder = './output'
M
MissPenguin 已提交
131
img_path = 'ppstructure/docs/table/1.png'
文幕地方's avatar
文幕地方 已提交
132 133 134 135 136 137 138 139 140 141
img = cv2.imread(img_path)
result = table_engine(img)
save_structure_res(result, save_folder,os.path.basename(img_path).split('.')[0])

for line in result:
    line.pop('img')
    print(line)

from PIL import Image

M
MissPenguin 已提交
142
font_path = 'doc/fonts/simfang.ttf' # PaddleOCR下提供字体包
文幕地方's avatar
文幕地方 已提交
143 144 145 146 147 148
image = Image.open(img_path).convert('RGB')
im_show = draw_structure_result(image, result,font_path=font_path)
im_show = Image.fromarray(im_show)
im_show.save('result.jpg')
```

M
update  
MissPenguin 已提交
149
<a name="222"></a>
150 151 152 153 154 155 156 157 158 159
#### 2.2.2 版面分析+表格识别

```python
import os
import cv2
from paddleocr import PPStructure,draw_structure_result,save_structure_res

table_engine = PPStructure(show_log=True)

save_folder = './output'
M
MissPenguin 已提交
160
img_path = 'ppstructure/docs/table/1.png'
161 162 163 164 165 166 167 168 169 170
img = cv2.imread(img_path)
result = table_engine(img)
save_structure_res(result, save_folder,os.path.basename(img_path).split('.')[0])

for line in result:
    line.pop('img')
    print(line)

from PIL import Image

M
MissPenguin 已提交
171
font_path = 'doc/fonts/simfang.ttf' # PaddleOCR下提供字体包
172 173 174 175 176 177 178 179
image = Image.open(img_path).convert('RGB')
im_show = draw_structure_result(image, result,font_path=font_path)
im_show = Image.fromarray(im_show)
im_show.save('result.jpg')
```

<a name="223"></a>
#### 2.2.3 版面分析
180 181 182 183 184 185 186 187 188

```python
import os
import cv2
from paddleocr import PPStructure,save_structure_res

table_engine = PPStructure(table=False, ocr=False, show_log=True)

save_folder = './output'
M
MissPenguin 已提交
189
img_path = 'ppstructure/docs/table/1.png'
190 191 192 193 194 195 196 197 198
img = cv2.imread(img_path)
result = table_engine(img)
save_structure_res(result, save_folder, os.path.basename(img_path).split('.')[0])

for line in result:
    line.pop('img')
    print(line)
```

199
<a name="224"></a>
A
an1018 已提交
200

201
#### 2.2.4 表格识别
202 203 204 205 206 207 208 209 210

```python
import os
import cv2
from paddleocr import PPStructure,save_structure_res

table_engine = PPStructure(layout=False, show_log=True)

save_folder = './output'
M
MissPenguin 已提交
211
img_path = 'ppstructure/docs/table/table.jpg'
212 213 214 215 216 217 218 219 220
img = cv2.imread(img_path)
result = table_engine(img)
save_structure_res(result, save_folder, os.path.basename(img_path).split('.')[0])

for line in result:
    line.pop('img')
    print(line)
```

221
<a name="225"></a>
littletomatodonkey's avatar
littletomatodonkey 已提交
222
#### 2.2.5 关键信息抽取
文幕地方's avatar
文幕地方 已提交
223

文幕地方's avatar
文幕地方 已提交
224
关键信息抽取暂不支持通过whl包调用,详细使用教程请参考:[inference文档](./inference.md)
文幕地方's avatar
文幕地方 已提交
225

A
an1018 已提交
226 227 228 229 230 231 232 233
<a name="226"></a>

#### 2.2.6 版面恢复

```python
import os
import cv2
from paddleocr import PPStructure,save_structure_res
A
an1018 已提交
234
from paddleocr.ppstructure.recovery.recovery_to_doc import sorted_layout_boxes, convert_info_docx
A
an1018 已提交
235

A
an1018 已提交
236 237 238 239
# 中文测试图
table_engine = PPStructure(recovery=True)
# 英文测试图
# table_engine = PPStructure(recovery=True, lang='en')
A
an1018 已提交
240 241

save_folder = './output'
M
MissPenguin 已提交
242
img_path = 'ppstructure/docs/table/1.png'
A
an1018 已提交
243 244 245 246 247 248 249 250 251
img = cv2.imread(img_path)
result = table_engine(img)
save_structure_res(result, save_folder, os.path.basename(img_path).split('.')[0])

for line in result:
    line.pop('img')
    print(line)

h, w, _ = img.shape
A
an1018 已提交
252 253
res = sorted_layout_boxes(result, w)
convert_info_docx(img, res, save_folder, os.path.basename(img_path).split('.')[0])
A
an1018 已提交
254 255
```

M
update  
MissPenguin 已提交
256
<a name="23"></a>
文幕地方's avatar
文幕地方 已提交
257
### 2.3 返回结果说明
M
MissPenguin 已提交
258
PP-Structure的返回结果为一个dict组成的list,示例如下:
文幕地方's avatar
文幕地方 已提交
259

M
update  
MissPenguin 已提交
260 261
<a name="231"></a>
#### 2.3.1 版面分析+表格识别
文幕地方's avatar
文幕地方 已提交
262 263 264 265 266 267 268 269 270
```shell
[
  {   'type': 'Text',
      'bbox': [34, 432, 345, 462],
      'res': ([[36.0, 437.0, 341.0, 437.0, 341.0, 446.0, 36.0, 447.0], [41.0, 454.0, 125.0, 453.0, 125.0, 459.0, 41.0, 460.0]],
                [('Tigure-6. The performance of CNN and IPT models using difforen', 0.90060663), ('Tent  ', 0.465441)])
  }
]
```
M
MissPenguin 已提交
271
dict 里各个字段说明如下:
文幕地方's avatar
文幕地方 已提交
272

273 274 275 276
| 字段   | 说明|
| --- |---|
|type| 图片区域的类型 |
|bbox| 图片区域的在原图的坐标,分别[左上角x,左上角y,右下角x,右下角y]|
277
|res| 图片区域的OCR或表格识别结果。<br> 表格: 一个dict,字段说明如下<br>&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp; `html`: 表格的HTML字符串<br>&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp; 在代码使用模式下,前向传入return_ocr_result_in_table=True可以拿到表格中每个文本的检测识别结果,对应为如下字段: <br>&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp; `boxes`: 文本检测坐标<br>&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp; `rec_res`: 文本识别结果。<br> OCR: 一个包含各个单行文字的检测坐标和识别结果的元组 |
文幕地方's avatar
文幕地方 已提交
278

M
update  
MissPenguin 已提交
279 280 281 282 283 284
运行完成后,每张图片会在`output`字段指定的目录下有一个同名目录,图片里的每个表格会存储为一个excel,图片区域会被裁剪之后保存下来,excel文件和图片名为表格在图片里的坐标。

  ```
  /output/table/1/
    └─ res.txt
    └─ [454, 360, 824, 658].xlsx  表格识别结果
285 286
    └─ [16, 2, 828, 305].jpg            被裁剪出的图片区域
    └─ [17, 361, 404, 711].xlsx        表格识别结果
M
update  
MissPenguin 已提交
287 288 289
  ```

<a name="232"></a>
littletomatodonkey's avatar
littletomatodonkey 已提交
290
#### 2.3.2 关键信息抽取
文幕地方's avatar
文幕地方 已提交
291

littletomatodonkey's avatar
littletomatodonkey 已提交
292
请参考:[关键信息抽取教程](../kie/README_ch.md)
文幕地方's avatar
文幕地方 已提交
293

M
update  
MissPenguin 已提交
294
<a name="24"></a>
文幕地方's avatar
文幕地方 已提交
295 296
### 2.4 参数说明

297 298 299 300 301 302 303 304 305 306 307
| 字段 | 说明  | 默认值  |
|---|---|---|
| output | 结果保存地址 | ./output/table |
| table_max_len | 表格结构模型预测时,图像的长边resize尺度 | 488 |
| table_model_dir | 表格结构模型 inference 模型地址| None |
| table_char_dict_path | 表格结构模型所用字典地址 | ../ppocr/utils/dict/table_structure_dict.txt  |
| merge_no_span_structure | 表格识别模型中,是否对'\<td>'和'\</td>' 进行合并 | False |
| layout_model_dir  | 版面分析模型 inference 模型地址 | None |
| layout_dict_path  | 版面分析模型字典| ../ppocr/utils/dict/layout_publaynet_dict.txt |
| layout_score_threshold  | 版面分析模型检测框阈值| 0.5|
| layout_nms_threshold  | 版面分析模型nms阈值| 0.5|
308
| kie_algorithm  | kie模型算法| LayoutXLM|
309 310
| ser_model_dir  | ser模型  inference 模型地址| None|
| ser_dict_path  | ser模型字典| ../train_data/XFUND/class_list_xfun.txt|
311
| mode | structure or kie  | structure   |
312 313 314 315 316
| image_orientation | 前向中是否执行图像方向分类  | False   |
| layout | 前向中是否执行版面分析  | True   |
| table  | 前向中是否执行表格识别  | True   |
| ocr    | 对于版面分析中的非表格区域,是否执行ocr。当layout为False时会被自动设置为False| True |
| recovery    | 前向中是否执行版面恢复| False |
A
an1018 已提交
317
| save_pdf | 版面恢复导出docx文件的同时,是否导出pdf文件 | False |
318
| structure_version |  模型版本,可选 PP-structure和PP-structurev2  | PP-structure |
文幕地方's avatar
文幕地方 已提交
319

fanruinet's avatar
fanruinet 已提交
320
大部分参数和PaddleOCR whl包保持一致,见 [whl包文档](../../doc/doc_ch/whl.md)
M
MissPenguin 已提交
321 322 323 324

<a name="3"></a>
## 3. 小结

A
an1018 已提交
325
通过本节内容,相信您已经熟练掌握通过PaddleOCR whl包调用PP-Structure相关功能的使用方法,您可以参考[文档教程](../../README_ch.md#文档教程),获取包括模型训练、推理部署等更详细的使用教程。