Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
weixin_41840029
PaddleOCR
提交
b2260182
P
PaddleOCR
项目概览
weixin_41840029
/
PaddleOCR
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleOCR
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleOCR
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
b2260182
编写于
6月 15, 2021
作者:
W
WenmuZhou
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
rename folder
上级
2a1966a0
变更
21
隐藏空白更改
内联
并排
Showing
21 changed file
with
17 addition
and
17 deletion
+17
-17
test/MANIFEST.in
test/MANIFEST.in
+0
-0
test/__init__.py
test/__init__.py
+0
-0
test/api.md
test/api.md
+0
-0
test/api_ch.md
test/api_ch.md
+0
-0
test/paddlestructure.py
test/paddlestructure.py
+3
-3
test/predict_system.py
test/predict_system.py
+2
-2
test/setup.py
test/setup.py
+5
-5
test/table/README.md
test/table/README.md
+0
-0
test/table/README_ch.md
test/table/README_ch.md
+0
-0
test/table/__init__.py
test/table/__init__.py
+0
-0
test/table/eval_table.py
test/table/eval_table.py
+3
-3
test/table/matcher.py
test/table/matcher.py
+0
-0
test/table/predict_structure.py
test/table/predict_structure.py
+1
-1
test/table/predict_table.py
test/table/predict_table.py
+3
-3
test/table/table_metric/__init__.py
test/table/table_metric/__init__.py
+0
-0
test/table/table_metric/parallel.py
test/table/table_metric/parallel.py
+0
-0
test/table/table_metric/table_metric.py
test/table/table_metric/table_metric.py
+0
-0
test/table/tablepyxl/__init__.py
test/table/tablepyxl/__init__.py
+0
-0
test/table/tablepyxl/style.py
test/table/tablepyxl/style.py
+0
-0
test/table/tablepyxl/tablepyxl.py
test/table/tablepyxl/tablepyxl.py
+0
-0
test/utility.py
test/utility.py
+0
-0
未找到文件。
ppstructure
/MANIFEST.in
→
test
/MANIFEST.in
浏览文件 @
b2260182
文件已移动
ppstructure
/__init__.py
→
test
/__init__.py
浏览文件 @
b2260182
文件已移动
ppstructure/README
.md
→
test/api
.md
浏览文件 @
b2260182
文件已移动
ppstructure/README
_ch.md
→
test/api
_ch.md
浏览文件 @
b2260182
文件已移动
ppstructure
/paddlestructure.py
→
test
/paddlestructure.py
浏览文件 @
b2260182
...
...
@@ -24,9 +24,9 @@ import numpy as np
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
...
...
ppstructure
/predict_system.py
→
test
/predict_system.py
浏览文件 @
b2260182
...
...
@@ -31,8 +31,8 @@ import layoutparser as lp
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
()
...
...
ppstructure
/setup.py
→
test
/setup.py
浏览文件 @
b2260182
...
...
@@ -25,14 +25,14 @@ with open('../requirements.txt', encoding="utf-8-sig") as f:
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'
)
...
...
@@ -68,5 +68,5 @@ setup(
shutil
.
rmtree
(
'ppocr'
)
shutil
.
rmtree
(
'tools'
)
shutil
.
rmtree
(
'
ppstructure
'
)
shutil
.
rmtree
(
'
test
'
)
os
.
remove
(
'LICENSE'
)
ppstructure
/table/README.md
→
test
/table/README.md
浏览文件 @
b2260182
文件已移动
ppstructure
/table/README_ch.md
→
test
/table/README_ch.md
浏览文件 @
b2260182
文件已移动
ppstructure
/table/__init__.py
→
test
/table/__init__.py
浏览文件 @
b2260182
文件已移动
ppstructure
/table/eval_table.py
→
test
/table/eval_table.py
浏览文件 @
b2260182
...
...
@@ -20,9 +20,9 @@ sys.path.append(os.path.abspath(os.path.join(__dir__, '../..')))
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
()
...
...
ppstructure
/table/matcher.py
→
test
/table/matcher.py
浏览文件 @
b2260182
文件已移动
ppstructure
/table/predict_structure.py
→
test
/table/predict_structure.py
浏览文件 @
b2260182
...
...
@@ -32,7 +32,7 @@ from ppocr.data import create_operators, transform
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
()
...
...
ppstructure
/table/predict_table.py
→
test
/table/predict_table.py
浏览文件 @
b2260182
...
...
@@ -30,9 +30,9 @@ import tools.infer.predict_rec as predict_rec
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
()
...
...
ppstructure
/table/table_metric/__init__.py
→
test
/table/table_metric/__init__.py
浏览文件 @
b2260182
文件已移动
ppstructure
/table/table_metric/parallel.py
→
test
/table/table_metric/parallel.py
浏览文件 @
b2260182
文件已移动
ppstructure
/table/table_metric/table_metric.py
→
test
/table/table_metric/table_metric.py
浏览文件 @
b2260182
文件已移动
ppstructure
/table/tablepyxl/__init__.py
→
test
/table/tablepyxl/__init__.py
浏览文件 @
b2260182
文件已移动
ppstructure
/table/tablepyxl/style.py
→
test
/table/tablepyxl/style.py
浏览文件 @
b2260182
文件已移动
ppstructure
/table/tablepyxl/tablepyxl.py
→
test
/table/tablepyxl/tablepyxl.py
浏览文件 @
b2260182
文件已移动
ppstructure
/utility.py
→
test
/utility.py
浏览文件 @
b2260182
文件已移动
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录