VOC格式标签转换为yolo格式的标签

VOC格式标签转换为yolo格式的标签

xml -> txt

# _*_ coding:utf-8 _*_
import xml.etree.ElementTree as ET
import pickle
import os
from os import listdir, getcwd
from os.path import join
"""已知标签名,xml -> txt"""

imgs_path = './images_fire/'   #图片路径
anns_path = './labels_fire/'  #xml标签路径
ann_save_path = './labels/'   #txt标签保存路径

if not os.path.exists(ann_save_path):
    os.makedirs(ann_save_path)
anns = os.listdir(anns_path)

# classes = ["aeroplane", "bicycle", "bird", "boat", "bottle", "bus", "car", "cat", "chair", "cow", "diningtable", "dog", "horse", "motorbike", "person", "pottedplant", "sheep", "sofa", "train", "tvmonitor"]
classes = ["fire"]      #类别名,顺序随便,需要更改为自己的


def convert(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)


def convert_annotation(ann, totle_name):
    # in_file = open('VOCdevkit/VOC%s/Annotations/%s.xml' % (year, image_id), encoding='UTF-8')
    # out_file = open('VOCdevkit/VOC%s/labels/%s.txt' % (year, image_id), 'w')
    in_file = open(anns_path+ann,'r')
    out_file = open(ann_save_path+totle_name+'.txt','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
        # print(count)
        if cls not in classes or int(difficult) == 1:
            continue
        # elif str(cls) == 'quandin':
        #   cls = 'quanding'
        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))
        bb = convert((w, h), b)
        out_file.write(str(cls_id) + " " + " ".join([str(a) for a in bb]) + '\n')


# wd = getcwd()


num = 0
for ann in anns:
    ann = ann.split('.')
    totle_name = ann[0]
    ann =str.join('.' ,ann)
    convert_annotation(ann, totle_name)
    num+=1
    print('num----------------------------',num)

版权声明:本文为CSDN博主「AI余小晖」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_51154380/article/details/121914731

AI余小晖

我还没有学会写个人说明!

暂无评论

发表评论

相关推荐

【目标检测】锚框

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档 前言 【个人学习笔记记录,如有错误,请指正!】 一、锚框 理解锚框之前,我们需

yolo-fastest模型

两个关于yolo-fastest的资料 https://github.com/dog-qiuqiu/Yolo-FastestV2/ https://github.com/dog-qiuqiu/Yolo-Fastest

手把手教你实现YOLOv3 (一)

1. 引言 最近整理了YOLO系列相关论文阅读笔记,发现仅仅靠阅读论文还是有很多内容一知半解,吃得不是很透彻. 尽管网络上有很多博客都在讲解,但是很多实现细节细究起来还是有些困难. 俗话说的好: Talk is cheap. Show me