当前位置: 首页 > article >正文

[数据集][目标检测]疟疾恶性疟原虫物种目标检测数据集VOC+YOLO格式948张1类别

数据集格式:Pascal VOC格式+YOLO格式(不包含分割路径的txt文件,仅仅包含jpg图片以及对应的VOC格式xml文件和yolo格式txt文件)
图片数量(jpg文件个数):948
标注数量(xml文件个数):948
标注数量(txt文件个数):948
标注类别数:1
标注类别名称:["plasmodium"]
每个类别标注的框数:
plasmodium 框数 = 7628
总框数:7628
使用标注工具:labelImg
标注规则:对类别进行画矩形框
重要说明:网上看到同类数据集他们标注都存在问题。这个数据集专门经过写代码修复
特别声明:本数据集不对训练的模型或者权重文件精度作任何保证,数据集只提供准确且合理标注

标注示例:

别人标注文件:

上面明显存在几个错误,labelImg标注xmin,ymin等坐标信息都是整数,而且labelImg标准类别是<name></name>表示,显然无法正常读取,此外标注信息没有图片宽高等关键信息,容易导致后续脚本编写难度增大,经过修复后变成如下:

<annotation>
        <folder>VOC</folder>
        <filename>firc_plasmodium_1181.jpg</filename>
        <path>C:/Users/Administrator/Desktop/data/JPEGImages/firc_plasmodium_1181.jpg</path>
        <source>
            <database>My Database</database>
            <annotation>VOC2012</annotation>
            <image>flickr</image>
            <flickrid>NULL</flickrid>
        </source>
        <owner>
            <flickrid>NULL</flickrid>
            <name>company</name>
        </owner>
        <size>
            <width>750</width>
            <height>750</height>
            <depth>3</depth>
        </size>
        <segmented>0</segmented>
        <object>
            <name>plasmodium</name>
            <pose>Unspecified</pose>
            <truncated>0</truncated>
            <difficult>0</difficult>
            <bndbox>
                <xmin>253</xmin>
                <ymin>83</ymin>
                <xmax>293</xmax>
                <ymax>123</ymax>
            </bndbox>
        </object>
        <object>
            <name>plasmodium</name>
            <pose>Unspecified</pose>
            <truncated>0</truncated>
            <difficult>0</difficult>
            <bndbox>
                <xmin>242</xmin>
                <ymin>117</ymin>
                <xmax>282</xmax>
                <ymax>157</ymax>
            </bndbox>
        </object>
        <object>
            <name>plasmodium</name>
            <pose>Unspecified</pose>
            <truncated>0</truncated>
            <difficult>0</difficult>
            <bndbox>
                <xmin>498</xmin>
                <ymin>0</ymin>
                <xmax>538</xmax>
                <ymax>40</ymax>
            </bndbox>
        </object>
        <object>
            <name>plasmodium</name>
            <pose>Unspecified</pose>
            <truncated>0</truncated>
            <difficult>0</difficult>
            <bndbox>
                <xmin>566</xmin>
                <ymin>7</ymin>
                <xmax>606</xmax>
                <ymax>47</ymax>
            </bndbox>
        </object>
        <object>
            <name>plasmodium</name>
            <pose>Unspecified</pose>
            <truncated>0</truncated>
            <difficult>0</difficult>
            <bndbox>
                <xmin>299</xmin>
                <ymin>275</ymin>
                <xmax>339</xmax>
                <ymax>315</ymax>
            </bndbox>
        </object>
        <object>
            <name>plasmodium</name>
            <pose>Unspecified</pose>
            <truncated>0</truncated>
            <difficult>0</difficult>
            <bndbox>
                <xmin>382</xmin>
                <ymin>332</ymin>
                <xmax>422</xmax>
                <ymax>372</ymax>
            </bndbox>
        </object>
        <object>
            <name>plasmodium</name>
            <pose>Unspecified</pose>
            <truncated>0</truncated>
            <difficult>0</difficult>
            <bndbox>
                <xmin>396</xmin>
                <ymin>577</ymin>
                <xmax>436</xmax>
                <ymax>617</ymax>
            </bndbox>
        </object>
        <object>
            <name>plasmodium</name>
            <pose>Unspecified</pose>
            <truncated>0</truncated>
            <difficult>0</difficult>
            <bndbox>
                <xmin>580</xmin>
                <ymin>572</ymin>
                <xmax>620</xmax>
                <ymax>612</ymax>
            </bndbox>
        </object>
        <object>
            <name>plasmodium</name>
            <pose>Unspecified</pose>
            <truncated>0</truncated>
            <difficult>0</difficult>
            <bndbox>
                <xmin>676</xmin>
                <ymin>102</ymin>
                <xmax>716</xmax>
                <ymax>142</ymax>
            </bndbox>
        </object>
        <object>
            <name>plasmodium</name>
            <pose>Unspecified</pose>
            <truncated>0</truncated>
            <difficult>0</difficult>
            <bndbox>
                <xmin>439</xmin>
                <ymin>159</ymin>
                <xmax>479</xmax>
                <ymax>199</ymax>
            </bndbox>
        </object>
        <object>
            <name>plasmodium</name>
            <pose>Unspecified</pose>
            <truncated>0</truncated>
            <difficult>0</difficult>
            <bndbox>
                <xmin>540</xmin>
                <ymin>177</ymin>
                <xmax>580</xmax>
                <ymax>217</ymax>
            </bndbox>
        </object>
        <object>
            <name>plasmodium</name>
            <pose>Unspecified</pose>
            <truncated>0</truncated>
            <difficult>0</difficult>
            <bndbox>
                <xmin>513</xmin>
                <ymin>221</ymin>
                <xmax>553</xmax>
                <ymax>261</ymax>
            </bndbox>
        </object>
</annotation>

上面格式为标准VOC格式符合行业标准规范,而且使用网上其他脚本不容易出错。

下载地址: https://download.csdn.net/download/FL1623863129/89755231


http://www.kler.cn/news/307082.html

相关文章:

  • 大学生看过来,必备4款写论文AI写作网站先稿后付
  • 《论负载均衡技术在Web系统中的应用》写作框架,软考高级系统架构设计师
  • Python网络爬虫:如何高效获取网络数据
  • vue3 透传 Attributes
  • TDengine 签约前晨汽车,解锁智能出行的无限潜力
  • 【计算机网络】网络通信中的端口号
  • Android SPN/PLMN 显示逻辑简介
  • SpringBoot框架Web开发
  • 第十一章 【后端】商品分类管理微服务(11.1)——创建父工程
  • Python 实现 LM 算法(Levenberg-Marquardt)
  • PCIe进阶之TL:First/Last DW Byte Enables Rules Traffic Class Field
  • Linux命令分享 四 (ubuntu 16.04)(vi操作文件)
  • 第十七节:学习Hutool上传文件(自学Spring boot 3.x的第四天)
  • C++比大小游戏
  • 虚幻引擎Gameplay探索 Actor 之间的高效通信与交互技巧一
  • 鹏哥C语言39---goto语句(关机程序 )
  • UE4_后期处理六—复古电视效果
  • 【HCIA-Datacom】华为VRP系统
  • 利用Leaflet.js创建交互式地图:绘制固定尺寸的长方形
  • uniapp uni-table合并单元格
  • .SUFFIXES:
  • openGemini 社区人才培养计划:助力成长,培养新一代云原生数据库人才
  • Redis面试题整理
  • 信息学奥赛:青少年编程的高光舞台,通向未来科技的敲门砖
  • 冒泡,选择,快速-排序
  • nestjs cache manager 很ioredis配合使用方案
  • Python Pyvis库创建交互式网络图 高级功能详解
  • 设计模式---中介者模式
  • 智能客服 | AI助理与内部知识库如何优化用户体验
  • 机器学习-深度学习数据集之打架斗殴识别数据集