yolo格式的txt与labelimg的xml文件互转

txt2xml.py

import cv2
from pathlib import Path
from xml.dom.minidom import Document
 

img_dir = './dir/img/'              # 图片文件路径
txt_dir = './dir/txt/'              # txt文件路径
xml_dir = './dir/xml/'              # xml文件路径   
labels = {'0':'person', '1':'car'}  # 标签名

files = Path(txt_dir).glob('*txt')

for file in files:
    print(file)
    xmlBuilder = Document()
    annotation = xmlBuilder.createElement('annotation')  # 创建annotation标签
    xmlBuilder.appendChild(annotation)
    txtFile = open(file)
    txtList = txtFile.readlines()
    img = cv2.imread(img_dir + file.stem + '.jpg')
    h, w, d = img.shape

    filename = xmlBuilder.createElement('filename')  # filename标签
    filenamecontent = xmlBuilder.createTextNode(img_dir + file.stem + '.jpg')
    filename.appendChild(filenamecontent)
    annotation.appendChild(filename)  # filename标签结束

    size = xmlBuilder.createElement('size')  # size标签
    width = xmlBuilder.createElement('width')  # size子标签width
    widthcontent = xmlBuilder.createTextNode(str(w))
    width.appendChild(widthcontent)
    size.appendChild(width)  # size子标签width结束

    height = xmlBuilder.createElement('height')  # size子标签height
    heightcontent = xmlBuilder.createTextNode(str(h))
    height.appendChild(heightcontent)
    size.appendChild(height)  # size子标签height结束

    depth = xmlBuilder.createElement('depth')  # size子标签depth
    depthcontent = xmlBuilder.createTextNode(str(d))
    depth.appendChild(depthcontent)
    size.appendChild(depth)  # size子标签depth结束

    annotation.appendChild(size)  # size标签结束

    for line in txtList:
        oneline = line.strip().split(' ')
        object = xmlBuilder.createElement('object')  # object 标签
        picname = xmlBuilder.createElement('name')  # name标签
        namecontent = xmlBuilder.createTextNode(labels[oneline[0]])
        picname.appendChild(namecontent)
        object.appendChild(picname)  # name标签结束

        bndbox = xmlBuilder.createElement('bndbox')  # bndbox标签
        xmin = xmlBuilder.createElement('xmin')  # xmin标签
        mathData = int(((float(oneline[1])) * w) - (float(oneline[3])) * 0.5 * w)
        xminContent = xmlBuilder.createTextNode(str(mathData))
        xmin.appendChild(xminContent)
        bndbox.appendChild(xmin)  # xmin标签结束

        ymin = xmlBuilder.createElement('ymin')  # ymin标签
        mathData = int(((float(oneline[2])) * h) - (float(oneline[4])) * 0.5 * h)
        yminContent = xmlBuilder.createTextNode(str(mathData))
        ymin.appendChild(yminContent)
        bndbox.appendChild(ymin)  # ymin标签结束

        xmax = xmlBuilder.createElement('xmax')  # xmax标签
        mathData = int(((float(oneline[1])) * w) + (float(oneline[3])) * 0.5 * w)
        xmaxContent = xmlBuilder.createTextNode(str(mathData))
        xmax.appendChild(xmaxContent)
        bndbox.appendChild(xmax)  # xmax标签结束

        ymax = xmlBuilder.createElement('ymax')  # ymax标签
        mathData = int(((float(oneline[2])) * h) + (float(oneline[4])) * 0.5 * h)
        ymaxContent = xmlBuilder.createTextNode(str(mathData))
        ymax.appendChild(ymaxContent)
        bndbox.appendChild(ymax)  # ymax标签结束

        object.appendChild(bndbox)  # bndbox标签结束

        annotation.appendChild(object)  # object标签结束

    f = open(xml_dir + file.stem + '.xml', 'w')
    xmlBuilder.writexml(f, indent='\t', newl='\n', addindent='\t', encoding='utf-8')
    f.close()

xml2txt.py

from pathlib import Path
import xml.etree.ElementTree as ET

xml_dir = r'./dir/xml/'         # xml文件路径
txt_dir = r'./dir/txt/'         # txt文件路径
labels = {'0': "person", '1': "car"} # 标签名


def convert(box, dw, dh):
    x = (box[0] + box[2]) / 2.0
    y = (box[1] + box[3]) / 2.0
    w = box[2] - box[0]
    h = box[3] - box[1]

    x = x / dw
    y = y / dh
    w = w / dw
    h = h / dh

    return x,y,w,h


files = Path(xml_dir).glob('*xml')

for file in files:
    print(file)
    name = file.stem
    xml_o = open(xml_dir + '%s.xml'%name)
    txt_o = open(txt_dir + '%s.txt'%name,'w')

    pares = ET.parse(xml_o)
    root = pares.getroot()
    objects = root.findall('object')
    size = root.find('size')
    dw = int(size.find('width').text)
    dh = int(size.find('height').text)

    for obj in objects:
        cls = list(labels.values()).index(obj.find('name').text)
        bnd = obj.find('bndbox')
        b = (float(bnd.find('xmin').text),float(bnd.find('ymin').text), float(bnd.find('xmax').text),float(bnd.find('ymax').text))
        x,y,w,h = convert(b,dw,dh)
        write_t = '{} {:.5f} {:.5f} {:.5f} {:.5f}\n'.format(cls,x,y,w,h)
        txt_o.write(write_t)

    xml_o.close()
    txt_o.close()
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

给算法爸爸上香

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值