Skip to content

Instantly share code, notes, and snippets.

@InputBlackBoxOutput
Created March 23, 2022 10:12
Show Gist options
  • Save InputBlackBoxOutput/8ede7112531708b03a2e8e86ca2ff3d5 to your computer and use it in GitHub Desktop.
Save InputBlackBoxOutput/8ede7112531708b03a2e8e86ca2ff3d5 to your computer and use it in GitHub Desktop.
labelImg: Convert annotations in XML to YOLO format
from xml.dom import minidom
import os
import glob
LUT = {"class0": 0, "class1": 1, "class2": 2}
def convert_coordinates(size, box):
dw = 1.0/size[0]
dh = 1.0/size[1]
x = (box[0]+box[1])/2.0
y = (box[2]+box[3])/2.0
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)
def convert_xml2yolo():
for fname in glob.glob("data/*.xml"):
xmldoc = minidom.parse(fname)
fname_out = (fname[:-4]+'.txt')
with open(fname_out, "w") as f:
itemlist = xmldoc.getElementsByTagName('object')
size = xmldoc.getElementsByTagName('size')[0]
width = int((size.getElementsByTagName('width')[0]).firstChild.data)
height = int((size.getElementsByTagName('height')[0]).firstChild.data)
for item in itemlist:
classid = (item.getElementsByTagName('name')[0]).firstChild.data
if classid in LUT:
label_str = str(LUT[classid])
else:
label_str = "-1"
print ("warning: label '%s' not in look-up table" % classid)
xmin = ((item.getElementsByTagName('bndbox')[0]).getElementsByTagName('xmin')[0]).firstChild.data
ymin = ((item.getElementsByTagName('bndbox')[0]).getElementsByTagName('ymin')[0]).firstChild.data
xmax = ((item.getElementsByTagName('bndbox')[0]).getElementsByTagName('xmax')[0]).firstChild.data
ymax = ((item.getElementsByTagName('bndbox')[0]).getElementsByTagName('ymax')[0]).firstChild.data
b = (float(xmin), float(xmax), float(ymin), float(ymax))
bb = convert_coordinates((width,height), b)
f.write(label_str + " " + " ".join([("%.6f" % a) for a in bb]) + '\n')
print ("%s" % fname_out)
if __name__ == '__main__':
convert_xml2yolo()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment