-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvertlabel.py
47 lines (38 loc) · 1.35 KB
/
convertlabel.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import os
import argparse
def allFileList(rootfile, allFile):
folder = os.listdir(rootfile)
for temp in folder:
fileName = os.path.join(rootfile, temp)
if os.path.isfile(fileName):
allFile.append(fileName)
else:
allFileList(fileName, allFile)
def is_str_right(plate_name):
for str_ in plate_name:
if not str_.isdigit():
return False
return True
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument('--image_path', type=str, default="/mnt/EPan/carPlate/@realTest2_noTraining/realrealTest", help='source')
parser.add_argument('--label_file', type=str, default='datasets/val.txt', help='model.pt path(s)')
opt = parser.parse_args()
rootPath = opt.image_path
labelFile = opt.label_file
fp = open(labelFile, "w", encoding="utf-8")
file = []
allFileList(rootPath, file)
picNum = 0
for jpgFile in file:
jpgName = os.path.basename(jpgFile)
name, ext = os.path.splitext(jpgName)
if not name.isdigit() or ext.lower() not in ['.jpg', '.jpeg', '.png']:
continue
labelStr = "\t" # Use tab instead of space
strList = list(name)
for i in range(len(strList)):
labelStr += strList[i]
picNum += 1
fp.write(jpgFile + labelStr + "\n")
fp.close()