Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
weixin_41840029
PaddleOCR
提交
2f074068
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看板
提交
2f074068
编写于
6月 08, 2021
作者:
W
WenmuZhou
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
whl package support send model url
上级
ac56eba7
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
50 addition
and
10 deletion
+50
-10
ppocr/utils/network.py
ppocr/utils/network.py
+16
-0
ppstructure/paddlestructure.py
ppstructure/paddlestructure.py
+34
-10
未找到文件。
ppocr/utils/network.py
浏览文件 @
2f074068
...
...
@@ -20,6 +20,7 @@ from tqdm import tqdm
from
ppocr.utils.logging
import
get_logger
def
download_with_progressbar
(
url
,
save_path
):
logger
=
get_logger
()
response
=
requests
.
get
(
url
,
stream
=
True
)
...
...
@@ -45,6 +46,7 @@ def maybe_download(model_storage_directory, url):
os
.
path
.
join
(
model_storage_directory
,
'inference.pdiparams'
)
)
or
not
os
.
path
.
exists
(
os
.
path
.
join
(
model_storage_directory
,
'inference.pdmodel'
)):
assert
url
.
endswith
(
'.tar'
),
'Only supports tar compressed package'
tmp_path
=
os
.
path
.
join
(
model_storage_directory
,
url
.
split
(
'/'
)[
-
1
])
print
(
'download {} to {}'
.
format
(
url
,
tmp_path
))
os
.
makedirs
(
model_storage_directory
,
exist_ok
=
True
)
...
...
@@ -64,3 +66,17 @@ def maybe_download(model_storage_directory, url):
f
.
write
(
file
.
read
())
os
.
remove
(
tmp_path
)
def
is_link
(
s
):
return
s
is
not
None
and
s
.
startswith
(
'http'
)
def
confirm_model_dir_url
(
model_dir
,
default_model_dir
,
default_url
):
url
=
default_url
if
model_dir
is
None
or
is_link
(
model_dir
):
if
is_link
(
model_dir
):
url
=
model_dir
file_name
=
url
.
split
(
'/'
)[
-
1
][:
-
4
]
model_dir
=
default_model_dir
model_dir
=
os
.
path
.
join
(
model_dir
,
file_name
)
return
model_dir
,
url
ppstructure/paddlestructure.py
浏览文件 @
2f074068
...
...
@@ -30,7 +30,7 @@ from ppstructure.utility import init_args, draw_result
logger
=
get_logger
()
from
ppocr.utils.utility
import
check_and_read_gif
,
get_image_file_list
from
ppocr.utils.network
import
maybe_download
,
download_with_progressbar
from
ppocr.utils.network
import
maybe_download
,
download_with_progressbar
,
confirm_model_dir_url
,
is_link
__all__
=
[
'PaddleStructure'
,
'draw_result'
,
'to_excel'
]
...
...
@@ -70,16 +70,19 @@ class PaddleStructure(OCRSystem):
logger
.
setLevel
(
logging
.
DEBUG
)
params
.
use_angle_cls
=
False
# init model dir
if
params
.
det_model_dir
is
None
:
params
.
det_model_dir
=
os
.
path
.
join
(
BASE_DIR
,
VERSION
,
'det'
)
if
params
.
rec_model_dir
is
None
:
params
.
rec_model_dir
=
os
.
path
.
join
(
BASE_DIR
,
VERSION
,
'rec'
)
if
params
.
structure_model_dir
is
None
:
params
.
structure_model_dir
=
os
.
path
.
join
(
BASE_DIR
,
VERSION
,
'structure'
)
params
.
det_model_dir
,
det_url
=
confirm_model_dir_url
(
params
.
det_model_dir
,
os
.
path
.
join
(
BASE_DIR
,
VERSION
,
'det'
),
model_urls
[
'det'
])
params
.
rec_model_dir
,
rec_url
=
confirm_model_dir_url
(
params
.
rec_model_dir
,
os
.
path
.
join
(
BASE_DIR
,
VERSION
,
'rec'
),
model_urls
[
'rec'
])
params
.
structure_model_dir
,
structure_url
=
confirm_model_dir_url
(
params
.
structure_model_dir
,
os
.
path
.
join
(
BASE_DIR
,
VERSION
,
'structure'
),
model_urls
[
'structure'
])
# download model
maybe_download
(
params
.
det_model_dir
,
model_urls
[
'det'
]
)
maybe_download
(
params
.
rec_model_dir
,
model_urls
[
'rec'
]
)
maybe_download
(
params
.
structure_model_dir
,
model_urls
[
'structure'
]
)
maybe_download
(
params
.
det_model_dir
,
det_url
)
maybe_download
(
params
.
rec_model_dir
,
rec_url
)
maybe_download
(
params
.
structure_model_dir
,
structure_url
)
if
params
.
rec_char_dict_path
is
None
:
params
.
rec_char_type
=
'EN'
...
...
@@ -143,3 +146,24 @@ def main():
logger
.
info
(
item
[
'res'
])
save_res
(
result
,
save_folder
,
img_name
)
logger
.
info
(
'result save to {}'
.
format
(
os
.
path
.
join
(
save_folder
,
img_name
)))
if
__name__
==
'__main__'
:
table_engine
=
PaddleStructure
(
output
=
'/Users/zhoujun20/Desktop/工作相关/table/table_pr/PaddleOCR/output/table'
,
show_log
=
True
)
img_path
=
'/Users/zhoujun20/Desktop/工作相关/table/table_pr/PaddleOCR/ppstructure/test_imgs/paper-image.jpg'
img
=
cv2
.
imread
(
img_path
)
result
=
table_engine
(
img
)
for
line
in
result
:
print
(
line
)
from
PIL
import
Image
font_path
=
'/Users/zhoujun20/Desktop/工作相关/table/table_pr/PaddleOCR//doc/fonts/simfang.ttf'
image
=
Image
.
open
(
img_path
).
convert
(
'RGB'
)
im_show
=
draw_result
(
image
,
result
,
font_path
=
'/Users/zhoujun20/Desktop/工作相关/table/table_pr/PaddleOCR//doc/fonts/simfang.ttf'
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
.
save
(
'result.jpg'
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录