将voc数据集的几个label合并成一个,并将xml格式的annotation转换成txt文件

 在调试《Few-shot Object Detection via Feature Reweighting》一文代码过程中,遇到了label合并cmd命令不正确的问题,故修改voc_lable_1c,py文件

这里参考了网上的cat命令介绍:https://www.geeksforgeeks.org/cat-command-in-linux-with-examples/

以及type的命令介绍:https://blog.csdn.net/LL845876425/article/details/70038178?utm_medium=distribute.pc_relevant.none-task-blog-baidujs_title-1&spm=1001.2101.3001.4242

import xml.etree.ElementTree as ET
import pickle
import os
from os import listdir, getcwd
from os.path import join
import argparse


# parser = argparse.ArgumentParser()
# parser.add_argument('--type', type=str, choices=['1c', 'all'], required=True)
# args = parser.parse_args()


sets=[('2012', 'train'), ('2012', 'val'), ('2007', 'train'), ('2007', 'val'), ('2007', 'test')]

classes = ["aeroplane", "bicycle", "bird", "boat", "bottle", "bus", "car", "cat", "chair", "cow", "diningtable", "dog", "horse", "motorbike", "person", "pottedplant", "sheep", "sofa", "train", "tvmonitor"]

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(year, image_id, class_name):
    in_file = open('VOCdevkit/VOC%s/Annotations/%s.xml'%(year, image_id))
    out_file = open('VOCdevkit/VOC%s/labels_1c/%s/%s.txt'%(year, class_name, 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 != class_name or int(difficult) == 1:
            continue
        # cls_id = classes.index(cls)
        cls_id = 0
        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()

if not os.path.exists('voclist'):
    os.mkdir('voclist')

for class_name in classes:
    for year, image_set in sets:
        image_ids = open('VOCdevkit/VOC%s/ImageSets/Main/%s_%s.txt'%(year, class_name, image_set)).read().strip().split()
        ids, flags = image_ids[::2], image_ids[1::2]
        image_ids = list(zip(ids, flags))

        # File to save the image path list
        list_file = open('voclist/%s_%s_%s.txt'%(year, class_name, image_set), 'w')

        # File to save the image labels
        label_dir = 'labels_1c/' + class_name
        if not os.path.exists('VOCdevkit/VOC%s/%s/'%(year, label_dir)):
            os.makedirs('VOCdevkit/VOC%s/%s/'%(year, label_dir))

        # Traverse all images
        for image_id, flag in image_ids:
            if int(flag) == -1:
                continue
            list_file.write('%s/VOCdevkit/VOC%s/JPEGImages/%s.jpg\n'%(wd, year, image_id))
            convert_annotation(year, image_id, class_name)
        list_file.close()

    files = [
        'voclist\\2007_{}_train.txt'.format(class_name), #原代码中的是voclist/2007_{}_train.txt'.format(class_name)适用于linux,windows中需要将/换成\\
        'voclist\\2007_{}_val.txt'.format(class_name),
        'voclist\\2012_{}_train.txt'.format(class_name),
        'voclist\\2012_{}_val.txt'.format(class_name),
    ]
    files = ' + '.join(files) #这里源代码里' '改为' + ',cmd命令也不能使用linux下的命令cat而应该用copy命令将几个txt文件合并成一个
    cmd = 'copy ' + files + ' voclist\\{}_train.txt'.format(class_name)
    os.system(cmd)

 

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
txt文件转换VOC数据xml格式,需要进行以下步骤: 1. 创建VOC数据xml文件模板。 2. 读取txt文件中的标注信息,包括类别、位置信息等。 3. 将读取到的信息填充到xml文件模板中。 4. 将生xml文件保存到指定的目录中。 以下是一个简单的Python代码实现: ```python import os import xml.etree.cElementTree as ET def txt_to_xml(txt_file_path, xml_file_path, image_size, class_list): # 创建xml文件模板 root = ET.Element("annotation") ET.SubElement(root, "folder").text = os.path.dirname(txt_file_path) ET.SubElement(root, "filename").text = os.path.basename(txt_file_path).replace('.txt', '.jpg') size = ET.SubElement(root, "size") ET.SubElement(size, "width").text = str(image_size[0]) ET.SubElement(size, "height").text = str(image_size[1]) ET.SubElement(size, "depth").text = str(image_size[2]) for cls in class_list: ET.SubElement(root, "object") # 读取txt文件中的标注信息 with open(txt_file_path, 'r') as f: lines = f.readlines() for line in lines: line = line.strip().split() cls = line[0] xmin, ymin, xmax, ymax = line[1:] # 将标注信息填充到xml文件模板中 obj = ET.SubElement(root, "object") ET.SubElement(obj, "name").text = cls bndbox = ET.SubElement(obj, "bndbox") ET.SubElement(bndbox, "xmin").text = xmin ET.SubElement(bndbox, "ymin").text = ymin ET.SubElement(bndbox, "xmax").text = xmax ET.SubElement(bndbox, "ymax").text = ymax # 保存生xml文件 tree = ET.ElementTree(root) tree.write(xml_file_path) # 示例代码 txt_file_path = 'path/to/annotation.txt' xml_file_path = 'path/to/annotation.xml' image_size = (640, 480, 3) class_list = ['person', 'car', 'bike'] txt_to_xml(txt_file_path, xml_file_path, image_size, class_list) ``` 注意:以上代码仅是一个简单的示例,具体实现需要根据自己的数据格式和要求进行修改。

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值