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
93181fb4
"...composable_kernel_onnx.git" did not exist on "abf4bdb9a9946c578d4801a79650e79938fb0e41"
Commit
93181fb4
authored
Jul 19, 2021
by
WenmuZhou
Browse files
add encoding type to file
parent
b47ab9bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
10 deletions
+12
-10
ppocr/utils/gen_label.py
ppocr/utils/gen_label.py
+12
-10
No files found.
ppocr/utils/gen_label.py
View file @
93181fb4
#copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
#
copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
#
#
#Licensed under the Apache License, Version 2.0 (the "License");
#
Licensed under the Apache License, Version 2.0 (the "License");
#you may not use this file except in compliance with the License.
#
you may not use this file except in compliance with the License.
#You may obtain a copy of the License at
#
You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
# http://www.apache.org/licenses/LICENSE-2.0
#
#
#Unless required by applicable law or agreed to in writing, software
#
Unless required by applicable law or agreed to in writing, software
#distributed under the License is distributed on an "AS IS" BASIS,
#
distributed under the License is distributed on an "AS IS" BASIS,
#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#See the License for the specific language governing permissions and
#
See the License for the specific language governing permissions and
#limitations under the License.
#
limitations under the License.
import
os
import
os
import
argparse
import
argparse
import
json
import
json
...
@@ -31,7 +31,9 @@ def gen_det_label(root_path, input_dir, out_label):
...
@@ -31,7 +31,9 @@ def gen_det_label(root_path, input_dir, out_label):
for
label_file
in
os
.
listdir
(
input_dir
):
for
label_file
in
os
.
listdir
(
input_dir
):
img_path
=
root_path
+
label_file
[
3
:
-
4
]
+
".jpg"
img_path
=
root_path
+
label_file
[
3
:
-
4
]
+
".jpg"
label
=
[]
label
=
[]
with
open
(
os
.
path
.
join
(
input_dir
,
label_file
),
'r'
)
as
f
:
with
open
(
os
.
path
.
join
(
input_dir
,
label_file
),
'r'
,
encoding
=
'utf-8-sig'
)
as
f
:
for
line
in
f
.
readlines
():
for
line
in
f
.
readlines
():
tmp
=
line
.
strip
(
"
\n\r
"
).
replace
(
"
\xef\xbb\xbf
"
,
tmp
=
line
.
strip
(
"
\n\r
"
).
replace
(
"
\xef\xbb\xbf
"
,
""
).
split
(
','
)
""
).
split
(
','
)
...
...
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