add encoding type to file

This commit is contained in:
WenmuZhou 2021-07-19 15:41:55 +08:00
parent b47ab9bb71
commit 93181fb4d1
1 changed files with 12 additions and 10 deletions

View File

@ -31,7 +31,9 @@ def gen_det_label(root_path, input_dir, out_label):
for label_file in os.listdir(input_dir):
img_path = root_path + label_file[3:-4] + ".jpg"
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():
tmp = line.strip("\n\r").replace("\xef\xbb\xbf",
"").split(',')