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

文幕地方's avatar
文幕地方 已提交
3 4 5
- [1. 安装依赖包](#1-安装依赖包)
- [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-关键信息抽取)
文幕地方's avatar
文幕地方 已提交
11
  - [2.2 代码使用](#22-代码使用)
12 13 14 15
    - [2.2.1 图像方向分类版面分析表格识别](#221-图像方向分类版面分析表格识别)
    - [2.2.2 版面分析+表格识别](#222-版面分析表格识别)
    - [2.2.3 版面分析](#223-版面分析)
    - [2.2.4 表格识别](#224-表格识别)
littletomatodonkey's avatar
littletomatodonkey 已提交
16
    - [2.2.5 关键信息抽取](#225-关键信息抽取)
文幕地方's avatar
文幕地方 已提交
17 18
  - [2.3 返回结果说明](#23-返回结果说明)
    - [2.3.1 版面分析+表格识别](#231-版面分析表格识别)
littletomatodonkey's avatar
littletomatodonkey 已提交
19
    - [2.3.2 关键信息抽取](#232-关键信息抽取)
文幕地方's avatar
文幕地方 已提交
20
  - [2.4 参数说明](#24-参数说明)
M
update  
MissPenguin 已提交
21 22 23


<a name="1"></a>
文幕地方's avatar
文幕地方 已提交
24 25 26
## 1. 安装依赖包

```bash
文幕地方's avatar
文幕地方 已提交
27 28
# 安装 paddleocr,推荐使用2.5+版本
pip3 install "paddleocr>=2.5"
littletomatodonkey's avatar
littletomatodonkey 已提交
29 30
# 安装 关键信息抽取 依赖包(如不需要KIE功能,可跳过)
pip install -r kie/requirements.txt
文幕地方's avatar
文幕地方 已提交
31 32 33

```

M
update  
MissPenguin 已提交
34
<a name="2"></a>
文幕地方's avatar
文幕地方 已提交
35 36
## 2. 便捷使用

M
update  
MissPenguin 已提交
37 38
<a name="21"></a>
### 2.1 命令行使用  
39

M
update  
MissPenguin 已提交
40
<a name="211"></a>
41 42 43 44 45 46
#### 2.1.1 图像方向分类+版面分析+表格识别
```bash
paddleocr --image_dir=PaddleOCR/ppstructure/docs/table/1.png --type=structure --image_orientation=true
```

<a name="212"></a>
文幕地方's avatar
文幕地方 已提交
47
#### 2.1.2 版面分析+表格识别
文幕地方's avatar
文幕地方 已提交
48
```bash
49
paddleocr --image_dir=PaddleOCR/ppstructure/docs/table/1.png --type=structure
文幕地方's avatar
文幕地方 已提交
50 51
```

52 53
<a name="213"></a>
#### 2.1.3 版面分析
54 55 56 57
```bash
paddleocr --image_dir=PaddleOCR/ppstructure/docs/table/1.png --type=structure --table=false --ocr=false
```

58 59
<a name="214"></a>
#### 2.1.4 表格识别
60 61 62 63
```bash
paddleocr --image_dir=PaddleOCR/ppstructure/docs/table/table.jpg --type=structure --layout=false
```

64
<a name="215"></a>
littletomatodonkey's avatar
littletomatodonkey 已提交
65
#### 2.1.5 关键信息抽取
文幕地方's avatar
文幕地方 已提交
66

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

M
update  
MissPenguin 已提交
69
<a name="22"></a>
70
### 2.2 代码使用
文幕地方's avatar
文幕地方 已提交
71

M
update  
MissPenguin 已提交
72
<a name="221"></a>
73
#### 2.2.1 图像方向分类版面分析表格识别
M
update  
MissPenguin 已提交
74

文幕地方's avatar
文幕地方 已提交
75 76 77 78 79
```python
import os
import cv2
from paddleocr import PPStructure,draw_structure_result,save_structure_res

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

82 83
save_folder = './output'
img_path = 'PaddleOCR/ppstructure/docs/table/1.png'
文幕地方's avatar
文幕地方 已提交
84 85 86 87 88 89 90 91 92 93
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

94
font_path = 'PaddleOCR/doc/fonts/simfang.ttf' # PaddleOCR下提供字体包
文幕地方's avatar
文幕地方 已提交
95 96 97 98 99 100
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 已提交
101
<a name="222"></a>
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
#### 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'
img_path = 'PaddleOCR/ppstructure/docs/table/1.png'
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

font_path = 'PaddleOCR/doc/fonts/simfang.ttf' # PaddleOCR下提供字体包
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 版面分析
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150

```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'
img_path = 'PaddleOCR/ppstructure/docs/table/1.png'
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)
```

151 152
<a name="224"></a>
#### 2.2.4 表格识别
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171

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

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

save_folder = './output'
img_path = 'PaddleOCR/ppstructure/docs/table/table.jpg'
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)
```

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

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

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

M
update  
MissPenguin 已提交
181 182
<a name="231"></a>
#### 2.3.1 版面分析+表格识别
文幕地方's avatar
文幕地方 已提交
183 184 185 186 187 188 189 190 191 192 193
```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)])
  }
]
```
dict 里各个字段说明如下

194 195 196 197
| 字段   | 说明|
| --- |---|
|type| 图片区域的类型 |
|bbox| 图片区域的在原图的坐标,分别[左上角x,左上角y,右下角x,右下角y]|
198
|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
文幕地方 已提交
199

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

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

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

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

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

218 219 220 221 222 223 224 225 226 227 228
| 字段 | 说明  | 默认值  |
|---|---|---|
| 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|
229
| kie_algorithm  | kie模型算法| LayoutXLM|
230 231
| ser_model_dir  | ser模型  inference 模型地址| None|
| ser_dict_path  | ser模型字典| ../train_data/XFUND/class_list_xfun.txt|
232
| mode | structure or kie  | structure   |
233 234 235 236 237 238
| image_orientation | 前向中是否执行图像方向分类  | False   |
| layout | 前向中是否执行版面分析  | True   |
| table  | 前向中是否执行表格识别  | True   |
| ocr    | 对于版面分析中的非表格区域,是否执行ocr。当layout为False时会被自动设置为False| True |
| recovery    | 前向中是否执行版面恢复| False |
| structure_version |  模型版本,可选 PP-structure和PP-structurev2  | PP-structure |
文幕地方's avatar
文幕地方 已提交
239

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