提交 bab0b22d 编写于 作者: 文幕地方's avatar 文幕地方

rename test to test1

上级 94c5eb80
# PaddleStructure # PaddleStructure
install layoutparser
```sh
wget https://paddleocr.bj.bcebos.com/whl/layoutparser-0.0.0-py3-none-any.whl
pip3 install layoutparser-0.0.0-py3-none-any.whl
```
## 1. Introduction to pipeline ## 1. Introduction to pipeline
PaddleStructure is a toolkit for complex layout text OCR, the process is as follows PaddleStructure is a toolkit for complex layout text OCR, the process is as follows
......
# PaddleStructure # PaddleStructure
安装layoutparser
```sh
wget https://paddleocr.bj.bcebos.com/whl/layoutparser-0.0.0-py3-none-any.whl
pip3 install layoutparser-0.0.0-py3-none-any.whl
```
## 1. pipeline介绍 ## 1. pipeline介绍
PaddleStructure 是一个用于复杂板式文字OCR的工具包,流程如下 PaddleStructure 是一个用于复杂板式文字OCR的工具包,流程如下
......
...@@ -24,9 +24,9 @@ import numpy as np ...@@ -24,9 +24,9 @@ import numpy as np
from pathlib import Path from pathlib import Path
from ppocr.utils.logging import get_logger from ppocr.utils.logging import get_logger
from test.predict_system import OCRSystem, save_res from test1.predict_system import OCRSystem, save_res
from test.table.predict_table import to_excel from test1.table.predict_table import to_excel
from test.utility import init_args, draw_result from test1.utility import init_args, draw_result
logger = get_logger() logger = get_logger()
from ppocr.utils.utility import check_and_read_gif, get_image_file_list from ppocr.utils.utility import check_and_read_gif, get_image_file_list
......
...@@ -31,8 +31,8 @@ import layoutparser as lp ...@@ -31,8 +31,8 @@ import layoutparser as lp
from ppocr.utils.utility import get_image_file_list, check_and_read_gif from ppocr.utils.utility import get_image_file_list, check_and_read_gif
from ppocr.utils.logging import get_logger from ppocr.utils.logging import get_logger
from tools.infer.predict_system import TextSystem from tools.infer.predict_system import TextSystem
from test.table.predict_table import TableSystem, to_excel from test1.table.predict_table import TableSystem, to_excel
from test.utility import parse_args, draw_result from test1.utility import parse_args, draw_result
logger = get_logger() logger = get_logger()
......
...@@ -30,9 +30,9 @@ def readme(): ...@@ -30,9 +30,9 @@ def readme():
return README return README
shutil.copytree('/table', './test/table') shutil.copytree('./table', './test1/table')
shutil.copyfile('/predict_system.py', './test/predict_system.py') shutil.copyfile('./predict_system.py', './test1/predict_system.py')
shutil.copyfile('/utility.py', './test/utility.py') shutil.copyfile('./utility.py', './test1/utility.py')
shutil.copytree('../ppocr', './ppocr') shutil.copytree('../ppocr', './ppocr')
shutil.copytree('../tools', './tools') shutil.copytree('../tools', './tools')
shutil.copyfile('../LICENSE', './LICENSE') shutil.copyfile('../LICENSE', './LICENSE')
...@@ -68,5 +68,5 @@ setup( ...@@ -68,5 +68,5 @@ setup(
shutil.rmtree('ppocr') shutil.rmtree('ppocr')
shutil.rmtree('tools') shutil.rmtree('tools')
shutil.rmtree('test') shutil.rmtree('test1')
os.remove('LICENSE') os.remove('LICENSE')
...@@ -20,9 +20,9 @@ sys.path.append(os.path.abspath(os.path.join(__dir__, '../..'))) ...@@ -20,9 +20,9 @@ sys.path.append(os.path.abspath(os.path.join(__dir__, '../..')))
import cv2 import cv2
import json import json
from tqdm import tqdm from tqdm import tqdm
from test.table.table_metric import TEDS from test1.table.table_metric import TEDS
from test.table.predict_table import TableSystem from test1.table.predict_table import TableSystem
from test.utility import init_args from test1.utility import init_args
from ppocr.utils.logging import get_logger from ppocr.utils.logging import get_logger
logger = get_logger() logger = get_logger()
......
...@@ -32,7 +32,7 @@ from ppocr.data import create_operators, transform ...@@ -32,7 +32,7 @@ from ppocr.data import create_operators, transform
from ppocr.postprocess import build_post_process from ppocr.postprocess import build_post_process
from ppocr.utils.logging import get_logger from ppocr.utils.logging import get_logger
from ppocr.utils.utility import get_image_file_list, check_and_read_gif from ppocr.utils.utility import get_image_file_list, check_and_read_gif
from test.utility import parse_args from test1.utility import parse_args
logger = get_logger() logger = get_logger()
......
...@@ -30,9 +30,9 @@ import tools.infer.predict_rec as predict_rec ...@@ -30,9 +30,9 @@ import tools.infer.predict_rec as predict_rec
import tools.infer.predict_det as predict_det import tools.infer.predict_det as predict_det
from ppocr.utils.utility import get_image_file_list, check_and_read_gif from ppocr.utils.utility import get_image_file_list, check_and_read_gif
from ppocr.utils.logging import get_logger from ppocr.utils.logging import get_logger
from test.table.matcher import distance, compute_iou from test1.table.matcher import distance, compute_iou
from test.utility import parse_args from test1.utility import parse_args
import test.table.predict_structure as predict_strture import test1.table.predict_structure as predict_strture
logger = get_logger() logger = get_logger()
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册