xml转化成txt

import os
import sys
import xml.etree.ElementTree as ET
import glob

def xml_to_txt(indir,outdir):

    os.chdir(indir)
    annotations = os.listdir('.')
    annotations = glob.glob(str(annotations)+'*.xml')
    

    for i, file in enumerate(annotations):

        file_save = file.split('.')[0]+'.txt'
        print(file_save)
        file_txt = outdir + '/' + file_save
        #file_txt=os.path.join(outdir,file_save)
        print('**************************')
        print(file_txt)
        #f_w = open(file_txt,'w')
        f_w  = open(file_txt,'w',encoding='utf-8')
        print('**********************************')

        # actual parsing
        in_file = open(file)
        tree=ET.parse(in_file)
        root = tree.getroot()

        for obj in root.iter('object'):
                current = list()
                name = obj.find('name').text

                xmlbox = obj.find('bndbox')
                xn = xmlbox.find('xmin').text
                xx = xmlbox.find('xmax').text
                yn = xmlbox.find('ymin').text
                yx = xmlbox.find('ymax').text
                #print xn
                width = int(xx)-int(xn)
                print(width)
                height = int(yx)-int(yn)
                print(height)
                f_w.write('1:'+' ')
                f_w.write(xn+' '+yn+' '+str(width)+' '+str(height)+' ')
                f_w.write('\n')

indir='C:/Users/Administrator/Desktop/temp/xml'   #xml目录
outdir='C:/Users/Administrator/Desktop/temp/txt'  #txt目录

xml_to_txt(indir,outdir)
 

将annotations文件夹中的XML文件转化成txt文件,可以通过编写一个Python脚本来实现。以下是一个示例代码,它展示了如何解析XML文件并将其内容转换txt格式: ```python import os import xml.etree.ElementTree as ET def xml_to_txt(xml_folder, txt_folder): for filename in os.listdir(xml_folder): if filename.endswith('.xml'): # 读取并解析XML文件 file_path = os.path.join(xml_folder, filename) tree = ET.parse(file_path) root = tree.getroot() # 创建或打开对应的txt文件 txt_filename = os.path.splitext(filename)[0] + '.txt' txt_path = os.path.join(txt_folder, txt_filename) with open(txt_path, 'w') as txt_file: # 遍历XML文件中的所有目标对象,提取相关信息并写入txt文件 for obj in root.findall('.//object'): class_name = obj.find('name').text difficult = obj.find('difficult').text bbox = obj.find('bndbox') xmin = bbox.find('xmin').text ymin = bbox.find('ymin').text xmax = bbox.find('xmax').text ymax = bbox.find('ymax').text txt_file.write(f"{class_name} {xmin} {ymin} {xmax} {ymax} {difficult} ") # 指定XML文件夹和输出的txt文件夹路径 xml_folder = 'annotations' txt_folder = 'txt_annotations' # 调用函数进行转换 xml_to_txt(xml_folder, txt_folder) ``` 这段代码首先遍历annotations文件夹中的所有XML文件,然后使用`xml.etree.ElementTree`模块解析每个XML文件的内容。对于每个XML文件中的目标对象,它会提取类别名称、边界框坐标以及是否困难的信息,并将这些信息写入到一个新的txt文件中。最终,所有生成的txt文件将保存在指定的txt_annotations文件夹中。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值