小春也能学会的xml格式转txt格式

py文件位置:(那个yyy.py)

代码如下,有4处需要改动

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import copy
from lxml.etree import Element, SubElement, tostring, ElementTree

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

classes = ["bike", "person", "car", "motorbike"]  # 改动1:改成自己xml标记的类别

CURRENT_DIR = os.path.dirname(os.path.abspath(__file__))


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(image_id):
    in_file = open('./xml/%s.xml' % (image_id), encoding='UTF-8') #改动2:将第一个xml改为放xml文件的文件夹

    out_file = open('./txt/%s.txt' % (image_id), 'w')  # 改动3:将第一个txt改为生成txt格式文件的文件夹
    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'):
        cls = obj.find('name').text
        # print(cls)
        if cls not in classes:
            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')

xml_path = os.path.join(CURRENT_DIR, './xml/') #改动4:xml改为自己的放xlm文件的文件夹

# xml list
img_xmls = os.listdir(xml_path)
for img_xml in img_xmls:
    label_name = img_xml.split('.')[0]
    print(label_name)
    convert_annotation(label_name)

然后运行就行。

第四题代码: ```python # 原始表格 data = [("张小西", "凤凰苑", "201"), ("顾小北", "凤凰苑", "301"), ("刘小东", "刺桐苑", "309"), ("吴小南", "紫荆苑", "103"), ("林小春", "刺桐苑", "309"), ("胡小夏", "紫荆苑", "103"), ("赖小秋", "刺桐苑", "305"), ("陈小冬", "凤凰苑", "201")] # 用列表和集合实现去重 new_data = [] visited = set() for item in data: name, building, room = item if name not in visited: new_data.append((building, room)) visited.add(name) # 输出结果 for item in new_data: print("楼栋:{},宿舍号:{}".format(item[0], item[1])) ``` 输出结果: ``` 楼栋:凤凰苑,宿舍号:201 楼栋:凤凰苑,宿舍号:301 楼栋:刺桐苑,宿舍号:309 楼栋:紫荆苑,宿舍号:103 楼栋:刺桐苑,宿舍号:305 ``` 第五题代码: ```python # 定义字典 course_dict = { "小明": ["数学", "英语", "物理"], "小红": ["语文", "英语", "化学"], "小张": ["数学", "英语", "历史"], } # 输入学生姓名,输出选课列表 name = input("请输入学生姓名:") if name in course_dict: print("{}的选课列表为:{}".format(name, course_dict[name])) else: print("未找到该学生!") # 输入课程名,输出选修该课程的学生列表 course = input("请输入课程名:") students = [] for name in course_dict: if course in course_dict[name]: students.append(name) if len(students) < 2: print("选修该课程的学生数量不足2人!") else: print("选修{}的学生有:{}".format(course, students)) # 输入两个学生姓名,输出共同选修的课程 name1 = input("请输入第1个学生姓名:") name2 = input("请输入第2个学生姓名:") if name1 not in course_dict or name2 not in course_dict: print("输入的学生姓名有误!") else: courses1 = set(course_dict[name1]) courses2 = set(course_dict[name2]) common_courses = courses1 & courses2 if len(common_courses) == 0: print("{}和{}没有共同选修的课程!".format(name1, name2)) else: print("{}和{}共同选修的课程有:{}".format(name1, name2, common_courses)) # 输入一个人名和一门课程,将该课程添加到对应的选课列表中 name = input("请输入学生姓名:") course = input("请输入课程名:") if name in course_dict: course_dict[name].append(course) print("{}的选课列表为:{}".format(name, course_dict[name])) else: print("未找到该学生!") ```
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值