Last active
November 24, 2021 13:31
-
-
Save Merwanski/8b8b95d4c7227651fe2c3947745ef0b2 to your computer and use it in GitHub Desktop.
convert pascal annotation to yolo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import xml.etree.ElementTree as ET | |
import pickle | |
import os,sys | |
from os import listdir, getcwd | |
from os.path import join | |
# TODO | |
classes = [""] # update with the classes of your dataset | |
def convert(size,box): | |
# Conversion from VOC to YOLO format | |
dw = 1./(size[0]) | |
dh = 1./(size[1]) | |
x = (box[0] + box[1])/2.0 - 1 | |
y = (box[2] + box[3])/2.0 - 1 | |
w = box[1] - box[0] | |
h = box[3] - box[2] | |
x = x*dw | |
w = w*dw | |
y = y*dh | |
h = h*dh | |
return (x,y,w,h) | |
#print ann_file | |
def converting_annotation(ann_file): | |
for ann in ann_file: | |
txt_file= ann.split('.')[0]+'.txt' | |
in_file=open(ann_dir+ann) | |
out_file =open(ann_dir+txt_file, 'w') | |
tree=ET.parse(in_file) | |
root = tree.getroot() | |
size = root.find('size') | |
w = int(size.find('width').text) | |
h = int(size.find('height').text) | |
print w,h | |
for obj in root.iter('object'): | |
cls=obj.find('name').text | |
if cls not in classes: | |
continue | |
cls_id=classes.index(cls) | |
xmlbox = obj.find('bndbox') | |
b = (float(xmlbox.find('xmin').text), float(xmlbox.find('xmax').text), float(xmlbox.find('ymin').text), float(xmlbox.find('ymax').text)) | |
data = convert((w,h), b) | |
out_file.write(str(cls_id) + " " + " ".join([str(a) for a in data]) + '\n') | |
if __name__ == '__main__': | |
ann_dir=sys.argv[1] | |
ann_file=os.listdir(ann_dir) | |
ann_file.sort() | |
print(ann_file) | |
converting_annotation(ann_file) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment