Skip to content

Commit

Permalink
rename folder
Browse files Browse the repository at this point in the history
  • Loading branch information
WenmuZhou committed Jun 15, 2021
1 parent 2a1966a commit b226018
Show file tree
Hide file tree
Showing 21 changed files with 17 additions and 17 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions ppstructure/paddlestructure.py → test/paddlestructure.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
from pathlib import Path

from ppocr.utils.logging import get_logger
from ppstructure.predict_system import OCRSystem, save_res
from ppstructure.table.predict_table import to_excel
from ppstructure.utility import init_args, draw_result
from test.predict_system import OCRSystem, save_res
from test.table.predict_table import to_excel
from test.utility import init_args, draw_result

logger = get_logger()
from ppocr.utils.utility import check_and_read_gif, get_image_file_list
Expand Down
4 changes: 2 additions & 2 deletions ppstructure/predict_system.py → test/predict_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
from ppocr.utils.utility import get_image_file_list, check_and_read_gif
from ppocr.utils.logging import get_logger
from tools.infer.predict_system import TextSystem
from ppstructure.table.predict_table import TableSystem, to_excel
from ppstructure.utility import parse_args, draw_result
from test.table.predict_table import TableSystem, to_excel
from test.utility import parse_args, draw_result

logger = get_logger()

Expand Down
10 changes: 5 additions & 5 deletions ppstructure/setup.py → test/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@


def readme():
with open('README_ch.md', encoding="utf-8-sig") as f:
with open('api_ch.md', encoding="utf-8-sig") as f:
README = f.read()
return README


shutil.copytree('../ppstructure/table', './ppstructure/table')
shutil.copyfile('../ppstructure/predict_system.py', './ppstructure/predict_system.py')
shutil.copyfile('../ppstructure/utility.py', './ppstructure/utility.py')
shutil.copytree('/table', './test/table')
shutil.copyfile('/predict_system.py', './test/predict_system.py')
shutil.copyfile('/utility.py', './test/utility.py')
shutil.copytree('../ppocr', './ppocr')
shutil.copytree('../tools', './tools')
shutil.copyfile('../LICENSE', './LICENSE')
Expand Down Expand Up @@ -68,5 +68,5 @@ def readme():

shutil.rmtree('ppocr')
shutil.rmtree('tools')
shutil.rmtree('ppstructure')
shutil.rmtree('test')
os.remove('LICENSE')
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions ppstructure/table/eval_table.py → test/table/eval_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
import cv2
import json
from tqdm import tqdm
from ppstructure.table.table_metric import TEDS
from ppstructure.table.predict_table import TableSystem
from ppstructure.utility import init_args
from test.table.table_metric import TEDS
from test.table.predict_table import TableSystem
from test.utility import init_args
from ppocr.utils.logging import get_logger

logger = get_logger()
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from ppocr.postprocess import build_post_process
from ppocr.utils.logging import get_logger
from ppocr.utils.utility import get_image_file_list, check_and_read_gif
from ppstructure.utility import parse_args
from test.utility import parse_args

logger = get_logger()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
import tools.infer.predict_det as predict_det
from ppocr.utils.utility import get_image_file_list, check_and_read_gif
from ppocr.utils.logging import get_logger
from ppstructure.table.matcher import distance, compute_iou
from ppstructure.utility import parse_args
import ppstructure.table.predict_structure as predict_strture
from test.table.matcher import distance, compute_iou
from test.utility import parse_args
import test.table.predict_structure as predict_strture

logger = get_logger()

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit b226018

Please sign in to comment.