腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
文章
问答
视频
用户
沙龙
专栏
专区
综合排序
丨
最热优先
丨
最新优先
时间不限
VOC
数据集解析
VOC
2007解析
VOC
数据是 PASCAL
VOC
Challenge 用到的数据集,官网:http://host.robots.ox.ac.uk/pascal/
VOC
/ 这里以常用的
VOC
2007数据集 作为代表来讲解一下
VOC
数据集 1.下载数据 官网:http://host.robots.ox.ac.uk/pascal/
VOC
/
voc
2007/index.html 训练集/验证集: http://host.robots.ox.ac.uk /pascal/
VOC
/
voc
2007/VOCtrainval_06-Nov-2007.tar DevKit:http://host.robots.ox.ac.uk/pascal/
VOC
/
voc
2007 /VOCdevkit_08-Jun-2007.tar 带有标记的测试集:http://host.robots.ox.ac.uk/pascal/
VOC
/
voc
2007/VOCtest_06-Nov-2007 .tar 这里说明一下,
VOC
官方给出的数据集中,只有
VOC
2007是给出了带有标记的测试集的, 其他年份的数据集是没有 Anotated test data的 至于训练集train set、验证集validation
TeeyoHuang
2019-12-20
5.7K
0
标签:
http
PASCAL
VOC
的评估代码
voc
_eval.py解析
目录1、读检测的结果2、解析一幅图像中的目标数3、计算AP4、
VOC
的评估5、进行python评估6、
voc
的检测评估----1、读检测的结果def write_
voc
_results_file(all_boxes cls, cls_id in NAME_LABEL_MAP.items(): if cls == 'back_ground': continue print("Writing {}
VOC
2、解析一幅图像中的目标数def parse_rec(filename): """ Parse a PASCAL
VOC
xml file """ tree = ET.parse(filename) 的AP,如果use_07_metric为真,使用
VOC
07 11点方法。 4、
VOC
的评估def
voc
_eval(detpath, annopath, test_imgid_list, cls_name, ovthresh=0.5, use_
狼啸风云
2022-09-03
2.2K
0
标签:
xml
python
VOC
格式转CSV
import osimport xml.dom.minidom path_img = "
VOC
2007/JPEGImages"path_xml = "
VOC
2007/Annotations" xml_list
狼啸风云
2022-09-02
1.7K
0
visdrone转
voc
问题
xml_name, 'w') as fout: fout.write('<annotation>' + '\n') fout.write('\t' + '<folder>
VOC
2007 '\n') fin.close() fout.write('</annotation>') 转换后即可用labelImg查看即可,但是经过技术检查,发现train转换后
VOC
参考文章:VisDrone转
VOC
、YOLO格式_C++有手就行的博客-CSDN博客
git clone firc-dataset
2025-07-19
250
0
标签:
博客
脚本
数据
image
line
数据集
VOC
格式绝缘子缺陷检测数据集
VOC
-4086张
数据集格式:Pascal
VOC
格式(不包含分割路径的txt文件和yolo格式的txt文件,仅仅包含jpg图片和对应的xml) 图片数量(jpg文件个数):4086 标注数量(xml文件个数):4086
git clone firc-dataset
2025-07-19
324
0
标签:
count
工具
模型
数据
xml
替换
VOC
数据集中图片路径
在一次做项目的时候,团队分配任务做数据集,用 labelimage 来打标,汇总数据时发现 xml 中的图片路径各不相同,于是就写了这个工具来修改 xml 中的图片路径。
HauHau
2022-01-12
2.4K
0
标签:
xml
git
linux
c++
c#
合并PASCAL
VOC
的目标类别
import osimport xml.etree.ElementTree as ET#程序功能:批量修改
VOC
数据集中xml标签文件的标签名称def changelabelname(inputpath
狼啸风云
2022-09-02
992
0
标签:
数据
将KITTI转换为PASCAL
VOC
import os, sysimport globfrom PIL import Image # VEDAI 图像存储位置src_img_dir = "D:\dataset\cityscapes\leftImg8bit\\train\\zurich\\"# VEDAI 图像的 ground truth 的 txt 文件存放位置src_txt_dir = "D:\dataset\cityscapes\gtFine\\train\\zurich\\"src_xml_dir = "D:\dataset\citys
狼啸风云
2022-09-02
1.9K
0
PASCAL
VOC
统计各类目标数量
# -*- coding:utf-8 -*-import osimport xml.etree.ElementTree as ETimport numpy as npnp.set_printoptions(suppress=True, threshold=1000000)import matplotlibfrom PIL import Imagedef parse_obj(xml_path, filename): tree = ET.parse(xml_path + filename) obje
狼啸风云
2022-09-02
1.5K
0
PASCAL
VOC
2012 数据集详解
VOC
2012 数据集各种细节问题。 此外Pascal
VOC
还提供一些很有意思的标注数据包括行为识别、人体Layout分析等。 行为识别数据:预测图像中人的行为动作 ? 数据集结构与描述 Pascal
VOC
2012的文件结构如下: ? ? 标注制作 我喜欢用的制作
VOC
2012数据集的标注工具为labelImg ? 简单好用,自动生成
VOC
2012 Annotation XML文件。 更多数据标注与数据集制作工具参考之前的文章: 十个最常用深度学习图像/视频数据标注工具 参考资料 http://host.robots.ox.ac.uk/pascal/
VOC
/
voc
2012/index.html
OpenCV学堂
2019-08-14
6.8K
0
标签:
xml
问题归档
专栏文章
快讯文章归档
关键词归档
开发者手册归档
开发者手册 Section 归档