Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
wangsen
paddle_dbnet
Commits
72ebbf2d
Commit
72ebbf2d
authored
May 15, 2020
by
LDOUBLEV
Browse files
sorted outputs when export model
parent
d539508e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
15 deletions
+7
-15
tools/infer/predict_det.py
tools/infer/predict_det.py
+5
-12
tools/infer/predict_rec.py
tools/infer/predict_rec.py
+0
-1
tools/program.py
tools/program.py
+2
-2
No files found.
tools/infer/predict_det.py
View file @
72ebbf2d
...
...
@@ -142,8 +142,8 @@ class TextDetector(object):
outputs
.
append
(
output
)
outs_dict
=
{}
if
self
.
det_algorithm
==
"EAST"
:
outs_dict
[
'f_
score
'
]
=
outputs
[
0
]
outs_dict
[
'f_
geo
'
]
=
outputs
[
1
]
outs_dict
[
'f_
geo
'
]
=
outputs
[
0
]
outs_dict
[
'f_
score
'
]
=
outputs
[
1
]
else
:
outs_dict
[
'maps'
]
=
outputs
[
0
]
dt_boxes_list
=
self
.
postprocess_op
(
outs_dict
,
[
ratio_list
])
...
...
@@ -169,14 +169,7 @@ if __name__ == "__main__":
total_time
+=
elapse
count
+=
1
print
(
"Predict time of %s:"
%
image_file
,
elapse
)
img
=
cv2
.
cvtColor
(
img
,
cv2
.
COLOR_BGR2RGB
)
draw_img
=
draw_ocr
(
img
,
dt_boxes
,
None
,
None
,
False
)
draw_img_save
=
"./inference_results/"
if
not
os
.
path
.
exists
(
draw_img_save
):
os
.
makedirs
(
draw_img_save
)
cv2
.
imwrite
(
os
.
path
.
join
(
draw_img_save
,
os
.
path
.
basename
(
image_file
)),
draw_img
[:,
:,
::
-
1
])
print
(
"The visualized image saved in {}"
.
format
(
os
.
path
.
join
(
draw_img_save
,
os
.
path
.
basename
(
image_file
))))
"""
add visualized code
"""
print
(
"Avg Time:"
,
total_time
/
(
count
-
1
))
tools/infer/predict_rec.py
View file @
72ebbf2d
...
...
@@ -114,7 +114,6 @@ if __name__ == "__main__":
valid_image_file_list
.
append
(
image_file
)
img_list
.
append
(
img
)
rec_res
,
predict_time
=
text_recognizer
(
img_list
)
rec_res
,
predict_time
=
text_recognizer
(
img_list
)
for
ino
in
range
(
len
(
img_list
)):
print
(
"Predicts of %s:%s"
%
(
valid_image_file_list
[
ino
],
rec_res
[
ino
]))
print
(
"Total predict time for %d images:%.3f"
%
...
...
tools/program.py
View file @
72ebbf2d
...
...
@@ -191,8 +191,8 @@ def build_export(config, main_prog, startup_prog):
func_infor
=
config
[
'Architecture'
][
'function'
]
model
=
create_module
(
func_infor
)(
params
=
config
)
image
,
outputs
=
model
(
mode
=
'export'
)
fetches_var
=
[
outputs
[
name
]
for
name
in
outputs
]
fetches_var_name
=
[
name
for
name
in
outputs
]
fetches_var
=
sorted
(
[
outputs
[
name
]
for
name
in
outputs
]
)
fetches_var_name
=
[
name
for
name
in
fetches_var
]
feeded_var_names
=
[
image
.
name
]
target_vars
=
fetches_var
return
feeded_var_names
,
target_vars
,
fetches_var_name
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment