数据集格式转换二:DarkLabelToVOC升级版二

1. 背景

在用LabelIMG进行图片标记时,当图片宽高不一致时会出现标注的xml文件中的宽高信息为0的情况。
解决方法:利用opencv-python读取对应图片的宽高后代入计算。

2. 代码

import xml.etree.ElementTree as ET
import os
import cv2

'''
VOC数据集转U版的YOLO数据集:解决labelIMG标注时,xml文件中宽和高为0的问题
# 假设:图片文件夹和标签文件文件夹均在voc_root_dir目录下,图片所在父目录文件夹为img
# 假设:图片后缀均为 .jpg

'''

def dirCheck(checkdir):         # 如果没有改文件夹,则生成该文件夹
    if not os.path.exists(checkdir):
        os.makedirs(checkdir)

def img_wh(img_path):       # 读取对应图片的宽和高
    img = cv2.imread(img_path)
    img_size = img.shape  # 获取图片宽高及通道数
    height = img_size[0]
    width = img_size[1]
    return width,height

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
    x = '%.3f' % x    # 保留小数点后3位
    w = '%.3f' % w
    y = '%.3f' % y
    h = '%.3f' % h
    return (x,y,w,h)

def convert_annotation( rootpath, xmlname, classes):
    xmlpath = os.path.join(rootpath,'ann')      # xml所在文件夹
    img_dir = os.path.join(rootpath,'img')      # img所在文件夹
    xmlfile = os.path.join(xmlpath,xmlname)             # xml文件全路径
    with open(xmlfile, "r") as in_file:
      txtname = xmlname[:-4]+'.txt'                         # txt文件名,xml文件文件名转成txt文件名:00001.xml -> 00001.txt
      imgname = xmlname[:-4]+'.jpg'
      imgpath = os.path.join(img_dir, imgname) #对应图片路径
      txtpath = os.path.join(rootpath, 'YOLO', 'labels')    # txt文件所在文件夹    D:/.../YOLO/labels
      dirCheck(txtpath)
      txtfile = os.path.join(txtpath,txtname)               # txt文件全路径:D:/.../YOLO/labels/00001.txt
      with open(txtfile, "w+") as out_file:
        tree=ET.parse(in_file)
        root = tree.getroot()
        size = root.find('size')
        w = int(size.find('width').text)
        h = int(size.find('height').text)
        if(w==0 or h==0):       # 判断width或者height是否为零
            w,h = img_wh(imgpath)
        out_file.truncate()
        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:
                print('存在范围之外的类别,请检查xml文件',xmlfile)
                print('错误类别:',cls)
                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)
            out_file.write(str(cls_id) + " " + " ".join([str(a) for a in bb]) + '\n')


if __name__ == "__main__":
    classes = ['clsname1', 'clsname2', 'clsname3', 'clsname4', 'clsname5']
    voc_root_dir='D:/1016'
    ann_dir = os.path.join(voc_root_dir,'ann') 
    ann_list=os.listdir(ann_dir)                          # Annotations文件夹下的xml文件文件名列表
    for i in range(0,len(ann_list)):                      # 对于每一个xml文件
        if ann_list[i].endswith('.xml'):                  # 判断是不是xml文件
            # ann_path = os.path.join(ann_dir, ann_list[i]) # xml文件全路径
            convert_annotation(voc_root_dir, ann_list[i], classes)
        else:
            print('请注意:',ann_list[i])
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值