删除xml中不想要的类

代码功能:删除除了猫狗的其他类的标签框.

import xml.etree.cElementTree as ET
import os
path_root = ['./Annotations']
 
CLASSES = ["cat","dog"]
for anno_path in path_root:
    xml_list = os.listdir(anno_path)
    for axml in xml_list:
        path_xml = os.path.join(anno_path, axml)
        tree = ET.parse(path_xml)
        root = tree.getroot()
 
        for child in root.findall('object'):
            name = child.find('name').text
            if not name in CLASSES:
                root.remove(child)
 
        tree.write(os.path.join('./1', axml))

 

Guess you like

Origin blog.csdn.net/qq_34717531/article/details/117443628