forked from Cartucho/mAP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvert_gt_yolo.py
84 lines (78 loc) · 2.94 KB
/
convert_gt_yolo.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import sys
import os
import glob
import cv2
def convert_yolo_coordinates_to_voc(x_c_n, y_c_n, width_n, height_n, img_width, img_height):
## remove normalization given the size of the image
x_c = float(x_c_n) * img_width
y_c = float(y_c_n) * img_height
width = float(width_n) * img_width
height = float(height_n) * img_height
## compute half width and half height
half_width = width / 2
half_height = height / 2
## compute left, top, right, bottom
## in the official VOC challenge the top-left pixel in the image has coordinates (1;1)
left = int(x_c - half_width) + 1
top = int(y_c - half_height) + 1
right = int(x_c + half_width) + 1
bottom = int(y_c + half_height) + 1
return left, top, right, bottom
# read the class_list.txt to a list
with open("class_list.txt") as f:
obj_list = f.readlines()
## remove whitespace characters like `\n` at the end of each line
obj_list = [x.strip() for x in obj_list]
## e.g. first object in the list
#print(obj_list[0])
# change directory to the one with the files to be changed
path_to_folder = '../ground-truth'
#print(path_to_folder)
os.chdir(path_to_folder)
# old files (YOLO format) will be moved to a new folder (backup/)
## create the backup dir if it doesn't exist already
if not os.path.exists("backup"):
os.makedirs("backup")
# create VOC format files
txt_list = glob.glob('*.txt')
if len(txt_list) == 0:
print("Error: no .txt files found in ground-truth")
sys.exit()
for tmp_file in txt_list:
#print(tmp_file)
# 1. check that there is an image with that name
## get name before ".txt"
image_name = tmp_file.split(".txt",1)[0]
#print(image_name)
## check if image exists
for fname in os.listdir('../images'):
if fname.startswith(image_name):
## image found
#print(fname)
img = cv2.imread('../images/' + fname)
## get image width and height
img_height, img_width = img.shape[:2]
break
else:
## image not found
print("Error: image not found, corresponding to " + tmp_file)
sys.exit()
# 2. open txt file lines to a list
with open(tmp_file) as f:
content = f.readlines()
## remove whitespace characters like `\n` at the end of each line
content = [x.strip() for x in content]
# 3. move old file (YOLO format) to backup
os.rename(tmp_file, "backup/" + tmp_file)
# 4. create new file (VOC format)
with open(tmp_file, "a") as new_f:
for line in content:
## split a line by spaces.
## "c" stands for center and "n" stands for normalized
obj_id, x_c_n, y_c_n, width_n, height_n = line.split()
obj_name = obj_list[int(obj_id)]
left, top, right, bottom = convert_yolo_coordinates_to_voc(x_c_n, y_c_n, width_n, height_n, img_width, img_height)
## add new line to file
#print(obj_name + " " + str(left) + " " + str(top) + " " + str(right) + " " + str(bottom))
new_f.write(obj_name + " " + str(left) + " " + str(top) + " " + str(right) + " " + str(bottom) + '\n')
print("Conversion completed!")