YOLOv5划分数据集

文章介绍了如何使用Python脚本split_train_val.py和voc_label.py来处理Yolov5训练数据集的划分和标注转换。主要步骤包括按比例随机划分训练集和验证集,创建ImageSets目录并生成对应txt文件,以及将XML标注文件转换为YOLO格式的txt文件。关键在于正确设置路径,确保Main文件夹中存储数据集名称,dataSet_path中存储数据的绝对路径。
摘要由CSDN通过智能技术生成

我看到大佬http://t.csdn.cn/s1J8T更新了关于Yolov5训练自己的数据集(详细完整版),有朋友划分数据集时路径有问题,我介绍一下我的方法:

首先是split_train_val.py文件:

import os
import random

trainval_percent = 0.8
train_percent = 0.6
xmlfilepath = 'annotations'
total_xml = os.listdir(xmlfilepath)
num = len(total_xml)
list = range(num)
tv = int(num * trainval_percent)
tr = int(num * train_percent)
trainval = random.sample(list, tv)
train = random.sample(trainval, tr)

# ImageSets目录不存在,就创建
if not os.path.exists('ImageSets/'):
    os.makedirs('ImageSets/')
# ImageSets/Main目录不存在,就创建
if not os.path.exists('ImageSets/Main/'):
    os.makedirs('ImageSets/Main/')

ftrainval = open('ImageSets/Main/trainval.txt', 'w')
ftest = open('ImageSets/Main/test.txt', 'w')
ftrain = open('ImageSets/Main/train.txt', 'w')
fval = open('ImageSets/Main/val.txt', 'w')

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

其次是voc_label.py文件

import xml.etree.ElementTree as ET
import os
from os import getcwd

sets = ['train', 'val', 'test']
classes = ['2.0', '2.5', '3.0', '3.5', '4.0', '5.0']
abs_path = os.getcwd()


def convert(size, box):
    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


def convert_annotation(image_id):
    in_file = open('D:/yolov5/dataset_1128-483/annotations/%s.xml' % (image_id),encoding='UTF-8')
    out_file = open('D:/yolov5/dataset_1128-483/labels/%s.txt' % (image_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 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))
        b1, b2, b3, b4 = b
        # 标注越界修正
        if b2 > w:
            b2 = w
        if b4 > h:
            b4 = h
        b = (b1, b2, b3, b4)
        bb = convert((w, h), b)
        out_file.write(str(cls_id) + " " + " ".join([str(a) for a in bb]) + '\n')


wd = getcwd()
for image_set in sets:
    if not os.path.exists('labels/'):
        os.makedirs('labels/')
    image_ids = open('ImageSets/Main/%s.txt' % (image_set)).read().strip().split()
    if not os.path.exists('D:/yolov5/dataset_1128-483/dataSet_path/'):
#设置一个dataSet_path文件夹,用来存放train、val、test的数据的绝对路径
        os.makedirs('D:/yolov5/dataset_1128-483/dataSet_path/')
    list_file = open('dataSet_path/%s.txt' % (image_set), 'w')
    for image_id in image_ids:
        list_file.write('D:/yolov5/dataset_1128-483/images/%s.jpg\n'% (image_id))
        convert_annotation(image_id)
    list_file.close()

我发现出现问题主要是路径设置错误,按照上面的步骤,应该在Main文件夹中存放train、val、test的数据的名称,在dataSet_path文件夹中存放train、val、test的数据的绝对路径,在后面读取路径时候就没有问题了。

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值