From 2fab904538bffbd34f0a6ed140f77c6fcfb2c09e Mon Sep 17 00:00:00 2001 From: WenmuZhou Date: Wed, 23 Jun 2021 12:45:05 +0800 Subject: [PATCH] opt doc --- test1/api.md | 16 ++++++++++++---- test1/api_ch.md | 16 ++++++++++++---- test1/table/README.md | 2 +- test1/table/README_ch.md | 2 +- 4 files changed, 26 insertions(+), 10 deletions(-) diff --git a/test1/api.md b/test1/api.md index 92be9455..17877666 100644 --- a/test1/api.md +++ b/test1/api.md @@ -30,11 +30,19 @@ Types 1-4 follow the traditional OCR process, and 5 follow the Table OCR process [doc](table/README.md) -## 4. PaddleStructure whl package introduction +## 4. Predictive by inference engine -### 4.1 Use +Use the following commands to complete the inference +```python +python3 table/predict_system.py --det_model_dir=path/to/det_model_dir --rec_model_dir=path/to/rec_model_dir --table_model_dir=path/to/table_model_dir --image_dir=../doc/table/1.png --rec_char_dict_path=../ppocr/utils/dict/table_dict.txt --table_char_dict_path=../ppocr/utils/dict/table_structure_dict.txt --rec_char_type=EN --det_limit_side_len=736 --det_limit_type=min --output ../output/table +``` +After running, each image will have a directory with the same name under the directory specified in the output field. Each table in the picture will be stored as an excel, and the excel file name will be the coordinates of the table in the image. + +## 5. PaddleStructure whl package introduction + +### 5.1 Use -4.1.1 Use by code +5.1.1 Use by code ```python import os import cv2 @@ -60,7 +68,7 @@ im_show = Image.fromarray(im_show) im_show.save('result.jpg') ``` -4.1.2 Use by command line +5.1.2 Use by command line ```bash paddlestructure --image_dir=../doc/table/1.png ``` diff --git a/test1/api_ch.md b/test1/api_ch.md index 53b28f28..0f0772b0 100644 --- a/test1/api_ch.md +++ b/test1/api_ch.md @@ -30,11 +30,19 @@ PaddleStructure 是一个用于复杂板式文字OCR的工具包,流程如下 [文档](table/README_ch.md) -## 4. PaddleStructure whl包介绍 +## 4. 预测引擎推理 -### 4.1 使用 +使用如下命令即可完成预测引擎的推理 +```python +python3 table/predict_system.py --det_model_dir=path/to/det_model_dir --rec_model_dir=path/to/rec_model_dir --table_model_dir=path/to/table_model_dir --image_dir=../doc/table/1.png --rec_char_dict_path=../ppocr/utils/dict/table_dict.txt --table_char_dict_path=../ppocr/utils/dict/table_structure_dict.txt --rec_char_type=EN --det_limit_side_len=736 --det_limit_type=min --output ../output/table +``` +运行完成后,每张图片会output字段指定的目录下有一个同名目录,图片里的每个表格会存储为一个excel,excel文件名为表格在图片里的坐标。 + +## 5. PaddleStructure whl包介绍 + +### 5.1 使用 -4.1.1 代码使用 +5.1.1 代码使用 ```python import os import cv2 @@ -60,7 +68,7 @@ im_show = Image.fromarray(im_show) im_show.save('result.jpg') ``` -4.1.2 命令行使用 +5.1.2 命令行使用 ```bash paddlestructure --image_dir=../doc/table/1.png ``` diff --git a/test1/table/README.md b/test1/table/README.md index 33090e64..1fb00f01 100644 --- a/test1/table/README.md +++ b/test1/table/README.md @@ -46,4 +46,4 @@ First cd to the PaddleOCR/ppstructure directory ```python python3 table/predict_table.py --det_model_dir=path/to/det_model_dir --rec_model_dir=path/to/rec_model_dir --table_model_dir=path/to/table_model_dir --image_dir=../doc/table/1.png --rec_char_dict_path=../ppocr/utils/dict/table_dict.txt --table_char_dict_path=../ppocr/utils/dict/table_structure_dict.txt --rec_char_type=EN --det_limit_side_len=736 --det_limit_type=min --output ../output/table ``` -After running, the excel sheet of each picture will be saved in the directory specified by the table_output field \ No newline at end of file +After running, the excel sheet of each picture will be saved in the directory specified by the output field \ No newline at end of file diff --git a/test1/table/README_ch.md b/test1/table/README_ch.md index 71881071..03f002f9 100644 --- a/test1/table/README_ch.md +++ b/test1/table/README_ch.md @@ -46,4 +46,4 @@ python3 table/eval_table.py --det_model_dir=path/to/det_model_dir --rec_model_di ```python python3 table/predict_table.py --det_model_dir=path/to/det_model_dir --rec_model_dir=path/to/rec_model_dir --table_model_dir=path/to/table_model_dir --image_dir=../doc/table/1.png --rec_char_dict_path=../ppocr/utils/dict/table_dict.txt --table_char_dict_path=../ppocr/utils/dict/table_structure_dict.txt --rec_char_type=EN --det_limit_side_len=736 --det_limit_type=min --output ../output/table ``` -运行完成后,每张图片的excel表格会保存到table_output字段指定的目录下 +运行完成后,每张图片的excel表格会保存到output字段指定的目录下 -- GitLab