diff --git a/ppstructure/README_ch.md b/ppstructure/README_ch.md index 7ad154f86a5753a8bae79612ae3a1914e7fe57c0..22505ad83c6dc58adf472f3db94cbf608b9bbd01 100644 --- a/ppstructure/README_ch.md +++ b/ppstructure/README_ch.md @@ -1 +1,30 @@ -# TableStructurer \ No newline at end of file +# TableStructurer + +1. 代码使用 +```python +import cv2 +from paddlestructure import PaddleStructure,draw_result + +table_engine = PaddleStructure( + output='./output/table', + show_log=True) + +img_path = '../doc/table/1.png' +img = cv2.imread(img_path) +result = table_engine(img) +for line in result: + print(line) + +from PIL import Image + +font_path = 'path/tp/PaddleOCR/doc/fonts/simfang.ttf' +image = Image.open(img_path).convert('RGB') +im_show = draw_result(image, result,font_path=font_path) +im_show = Image.fromarray(im_show) +im_show.save('result.jpg') +``` + +2. 命令行使用 +```bash +paddlestructure --image_dir=../doc/table/1.png +```