yolov5/v7 xml转txt

yolov7项目格式如下:

detection文件是我放数据集的目录,转换的脚本代码应该和detection同级,detection里的目录结构如下:

Annotations是放xml文件,images是放图片的地方,labels是放转换后的txt文件,这里推荐使用images,如果是JPEGImages需要修改源码。这3个txt文件是脚本生成的,用来存放切分后的训练、验证、测试集图片的路径,如下图所示:

这里还有一个yaml文件来指定路径的。yaml里的路径指向的是这3个txt文件。yaml文件如下:

 

具体自行修改。

转换代码如下:

# -*- coding: utf-8 -*-
import xml.etree.ElementTree as ET
import os
import random

# 清理隐藏文件
def clear_hidden_files(path):
    dir_list = os.listdir(path)
    for i in dir_list:
        abspath = os.path.join(os.path.abspath(path), i)
        if os.path.isfile(abspath):
            if i.startswith("._"):
                os.remove(abspath)
        else:
            clear_hidden_files(abspath)

# 将数据集切分为train,test,val
def split_dataset_with_txt(trainval_percent,train_percent):
    total_xml = os.listdir(annotation_dir)
    num = len(total_xml)
    list = range(num)
    tv = int(num * trainval_percent)
    tr = int(tv * train_percent)
    trainval = random.sample(list, tv)
    train = random.sample(trainval, tr)
    ftrainval = open('trainval.txt', 'w', encoding='utf-8')
    ftest = open('test.txt', 'w', encoding='utf-8')
    ftrain = open('train.txt', 'w', encoding='utf-8')
    fval = open('val.txt', 'w', encoding='utf-8')

    for i in list:
        name = total_xml[i][:-4] + '\n'
        if i in trainval:
            ftrainval.write(name)
            if i in train:
                ftrain.write(name)
            else:
                fval.write(name)
        else:
            ftest.write(name)
    ftrainval.close()
    ftrain.close()
    fval.close()
    ftest.close()

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(image_id):
    out_file = open(txt_dir+'%s.txt' % image_id, 'w', encoding='utf-8')
    in_file = open(annotation_dir+'%s.xml' % image_id, encoding='utf-8')
    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 not in classes or int(difficult) == 1:
            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))
        bb = convert((w,h), b)
        print(b)
        out_file.write(str(cls_id) + " " + " ".join([str(a) for a in bb]) + '\n')
    in_file.close()
    out_file.close()


if __name__ == '__main__':

    # 类名
    classes = ['person']
    # 划分训练验证测试集,自行修改
    sets = ['train', 'test', 'val']
    root_dir = "detection/"
    annotation_dir = root_dir + "Annotations/"
    image_dir = root_dir + "images/"
    txt_dir = root_dir + 'labels/'

    if not os.path.isdir(annotation_dir):
            os.mkdir(annotation_dir)
    if not os.path.isdir(image_dir):
            os.mkdir(image_dir)
    if not os.path.exists(txt_dir):
        os.makedirs(txt_dir)

    clear_hidden_files(image_dir)
    clear_hidden_files(annotation_dir)
    
    # 切分数据集,txt文件处理
    trainval_percent = 1    # 训练验证集与测试集比例
    train_percent = 0.8     # 训练集验证集比例
    split_dataset_with_txt(trainval_percent, train_percent)

    # 对训练集,验证集,测试集进行处理
    for image_set in sets:
        image_ids = open('%s.txt' % (image_set), encoding='utf-8').read().strip().split()
        # 打开对应的train.txt 文件对其进行写入准备
        list_file = open(root_dir+'%s.txt' % (image_set), 'w', encoding='utf-8')
        # 将对应的文件_id以及全路径写进去并换行
        for image_id in image_ids:
            list_file.write(image_dir+'%s.jpg\n' % (image_id))
            convert_annotation(image_id)
        # 关闭文件
        list_file.close()

关于自己训练的数据集,另外一种结构:

 

自己已经划分好训练集和测试集,转换一下xml到txt,yaml写法:

  • 1
    点赞
  • 15
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值