import xml.etree.ElementTree as ET import pickle import os from os import listdir, getcwd from os.path import join sets = ['train', 'test', 'val'] classes = ["fish"]
defconvert(size, box): dw = 1. / size[0] dh = 1. / 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
defconvert_annotation(img_id): in_file = open('Annotations/%s.xml' % img_id) out_file = open('labels/%s.txt' % img_id, '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) for obj in root.iter('object'): difficult = obj.find('difficult').text cls = obj.find('name').text if cls notin classes orint(difficult) == 1: continue cls_id = classes.index(cls) xml_box = obj.find('bndbox') b = (float(xml_box.find('xmin').text), float(xml_box.find('xmax').text), float(xml_box.find('ymin').text), float(xml_box.find('ymax').text)) bb = convert((w, h), b) out_file.write(str(cls_id) + " " + " ".join([str(a) for a in bb]) + '\n')
wd = getcwd()
print(wd) for image_set in sets: ifnot os.path.exists('labels/'): os.makedirs('labels/') image_ids = open('ImageSets/%s.txt' % image_set).read().strip().split() list_file = open('%s.txt' % image_set, 'w') for image_id in image_ids: list_file.write('data/fish/images/%s.jpg\n' % image_id) convert_annotation(image_id) list_file.close()