统计标注的各类目标数量(xml标注格式)
2021/11/3 23:40:04
本文主要是介绍统计标注的各类目标数量(xml标注格式),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
注意:
本文代码建议把图片和标注文件分开放
图片存在 images 文件夹下(这里用不到)
标注文件存在 annotations 文件夹下
这里还用到 tqdm 库来显示进度条,不需要可以注释掉
import xml.etree.ElementTree as ET #导入xml模块 import pickle import os import glob from os import listdir, getcwd from os.path import join from tqdm import tqdm#缺包的需要安装 def class_num(_dir,class_name,dataset,nums): result = {} for clss in class_name: result[clss]=0 #各个类别的标签数量 #print(result) result["other"]=0#其他标签的数量 result["sum"]=0#总的标签数量 #total参数设置进度条的总长度 pbar = tqdm(total=nums,desc="%s-porcess"%dataset,unit="xml") for xmll in glob.glob(_dir+"*.xml"): #print(xml) #time.sleep(0.05) pbar.update(1)#每次更新进度条的长度 with open(xmll,"r",encoding="utf-8") as f: xml = ET.parse(f) # root = xml.getroot() # print(root.findall("object")) for obj in xml.iter('object'): result["sum"] = result["sum"]+1 if obj.find("name").text not in class_name: result["other"] = result["other"]+1 for clsn in class_name: if obj.find("name").text == clsn: #按标注的标签名进行统计 result[clsn] = result[clsn]+1 pbar.close()#关闭占用资源 return result if __name__ == '__main__': train_dir="E:/DL/detectron2/SwinT_detectron2/datasets/new/train/annotations/" test_dir="E:/DL/detectron2/SwinT_detectron2/datasets/test/annotations/" class_name = ["0","1","2"]#标注时的各类别的名称 train_num = len(os.listdir(train_dir))#计算标签文件的数量 test_num = len(os.listdir(test_dir)) print(train_num,test_num) results1 = class_num(train_dir,class_name,"train",train_num) results2 = class_num(test_dir,class_name,"test",test_num) print("\n\n训练集: ",results1) print("\n测试集: ",results2)
这篇关于统计标注的各类目标数量(xml标注格式)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-10-10XMLHTTPRequest项目实战:从入门到上手
- 2024-02-26lxml not found please install it
- 2022-09-16使用Druid数据源-开启监控-xml的方式-配置类的方式
- 2022-09-08IDEA中pom.xml配置文件依赖文件版本号报红的最有效解决办法
- 2022-09-05如何更换项目中web.xml的版本
- 2022-09-02使用dom4j xml解析文件数据
- 2022-08-24可扩展标记语言——XML
- 2022-08-23mybatis 配置文件mybatis.xml的加载过程
- 2022-08-162022最新有效 哔哩哔哩Bilibili手机端.m4s文件缓存转.mp4教程 支持每个视频单独一个文件夹 支持转换xml弹幕
- 2022-08-15mybatis_8_在pom.xml中添加lombok