Skip to content

Commit

Permalink
Merge branch 'JeallyBeans-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Cartucho committed May 3, 2018
2 parents 17d1ffc + e62dcc3 commit d3d0969
Showing 1 changed file with 85 additions and 0 deletions.
85 changes: 85 additions & 0 deletions extra/convert_pred_yolo.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
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 = '../predicted'
#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
## added conf for class confidence from Darknet Yolov2
obj_id, conf, 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 conf, JeallyBeans/kuk
#print(obj_name + " " + str(left) + " " + str(top) + " " + str(right) + " " + str(bottom))
new_f.write(obj_name + " " + str(conf) + " " str(left) + " " + str(top) + " " + str(right) + " " + str(bottom) + '\n')
print("Conversion completed!")

0 comments on commit d3d0969

Please sign in to comment.