DIOR数据集转化为COCO格式

2023-11-08 01:30
文章标签 数据 格式 转化 coco dior

本文主要是介绍DIOR数据集转化为COCO格式,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

DIOR数据集转化为COCO格式

为了实验方便,需要将DIOR数据集转化为COCO格式,在此将代码共享,希望能帮助到同样研究方向的人。

解压DIOR数据集的压缩文件之后,你的路径应该是这样的:

第一个参数是你电脑里上图的路径,第二个参数是你想输出COCO格式文件的路径

DIOR缺少很多COCO格式的数据,所以缺少的项都为空,代码如下

import os
import cv2
from tqdm import tqdm
import json
import xml.dom.minidomcategory_list = ['airplane', 'airport', 'baseballfield', 'basketballcourt', 'bridge', 'chimney', 'dam','Expressway-Service-area', 'Expressway-toll-station', 'golffield', 'groundtrackfield', 'harbor','overpass', 'ship', 'stadium', 'storagetank', 'tenniscourt', 'trainstation', 'vehicle', 'windmill']def convert_to_cocodetection(dir, output_dir):"""input:dir:the path to DIOR datasetoutput_dir:the path write the coco form json file"""annotations_path = dirnamelist_path = os.path.join(dir, "Main")trainval_images_path = os.path.join(dir, "JPEGImages-trainval")test_images_path = os.path.join(dir, "JPEGImages-test")id_num = 0categories = [{"id": 0, "name": "Airplane"},{"id": 1, "name": "Airport"},{"id": 2, "name": "Baseball field"},{"id": 3, "name": "Basketball court"},{"id": 4, "name": "Bridge"},{"id": 5, "name": "Chimney"},{"id": 6, "name": "Dam"},{"id": 7, "name": "Expressway service area"},{"id": 8, "name": "Expressway toll station"},{"id": 9, "name": "Golf course"},{"id": 10, "name": "Ground track field"},{"id": 11, "name": "Harbor"},{"id": 12, "name": "Overpass"},{"id": 13, "name": "Ship"},{"id": 14, "name": "Stadium"},{"id": 15, "name": "Storage tank"},{"id": 16, "name": "Tennis court"},{"id": 17, "name": "Train station"},{"id": 18, "name": "Vehicle"},{"id": 19, "name": "Wind mill"},]for mode in ["train", "val"]:images = []annotations = []print(f"start loading {mode} data...")if mode == "train":f = open(namelist_path + "/" + "train.txt", "r")images_path = trainval_images_pathelse:f = open(namelist_path + "/" + "val.txt", "r")images_path = trainval_images_pathfor name in tqdm(f.readlines()):# image partimage = {}name = name.replace("\n", "")image_name = name + ".jpg"annotation_name = name + ".xml"height, width = cv2.imread(images_path + "/" + image_name).shape[:2]image["file_name"] = image_nameimage["height"] = heightimage["width"] = widthimage["id"] = nameimages.append(image)# anno partdom = xml.dom.minidom.parse(dir + "/" + annotation_name)root_data = dom.documentElementfor i in range(len(root_data.getElementsByTagName('name'))):annotation = {}category = root_data.getElementsByTagName('name')[i].firstChild.datatop_left_x = root_data.getElementsByTagName('xmin')[i].firstChild.datatop_left_y = root_data.getElementsByTagName('ymin')[i].firstChild.dataright_bottom_x = root_data.getElementsByTagName('xmax')[i].firstChild.dataright_bottom_y = root_data.getElementsByTagName('ymax')[i].firstChild.databbox = [top_left_x, top_left_y, right_bottom_x, right_bottom_y]bbox = [int(i) for i in bbox]bbox = xyxy_to_xywh(bbox)annotation["image_id"] = nameannotation["bbox"] = bboxannotation["category_id"] = category_list.index(category)annotation["id"] = id_numannotation["iscrowd"] = 0annotation["segmentation"] = []annotation["area"] = bbox[2] * bbox[3]id_num += 1annotations.append(annotation)dataset_dict = {}dataset_dict["images"] = imagesdataset_dict["annotations"] = annotationsdataset_dict["categories"] = categoriesjson_str = json.dumps(dataset_dict)with open(f'{output_dir}/DIOR_{mode}_coco.json', 'w') as json_file:json_file.write(json_str)print("json file write done...")def get_test_namelist(dir, out_dir):full_path = out_dir + "/" + "test.txt"file = open(full_path, 'w')for name in tqdm(os.listdir(dir)):name = name.replace(".txt", "")file.write(name + "\n")file.close()return Nonedef centerxywh_to_xyxy(boxes):"""args:boxes:list of center_x,center_y,width,height,return:boxes:list of x,y,x,y,cooresponding to top left and bottom right"""x_top_left = boxes[0] - boxes[2] / 2y_top_left = boxes[1] - boxes[3] / 2x_bottom_right = boxes[0] + boxes[2] / 2y_bottom_right = boxes[1] + boxes[3] / 2return [x_top_left, y_top_left, x_bottom_right, y_bottom_right]def centerxywh_to_topleftxywh(boxes):"""args:boxes:list of center_x,center_y,width,height,return:boxes:list of x,y,x,y,cooresponding to top left and bottom right"""x_top_left = boxes[0] - boxes[2] / 2y_top_left = boxes[1] - boxes[3] / 2width = boxes[2]height = boxes[3]return [x_top_left, y_top_left, width, height]def xyxy_to_xywh(boxes):width = boxes[2] - boxes[0]height = boxes[3] - boxes[1]return [boxes[0], boxes[1], width, height]def clamp(coord, width, height):if coord[0] < 0:coord[0] = 0if coord[1] < 0:coord[1] = 0if coord[2] > width:coord[2] = widthif coord[3] > height:coord[3] = heightreturn coordif __name__ == '__main__':convert_to_cocodetection(r"path to your DIOR dataset", r"the path you want to write the coco format json file")

 

这篇关于DIOR数据集转化为COCO格式的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/367133

相关文章

使用Java解析JSON数据并提取特定字段的实现步骤(以提取mailNo为例)

《使用Java解析JSON数据并提取特定字段的实现步骤(以提取mailNo为例)》在现代软件开发中,处理JSON数据是一项非常常见的任务,无论是从API接口获取数据,还是将数据存储为JSON格式,解析... 目录1. 背景介绍1.1 jsON简介1.2 实际案例2. 准备工作2.1 环境搭建2.1.1 添加

MySQL中删除重复数据SQL的三种写法

《MySQL中删除重复数据SQL的三种写法》:本文主要介绍MySQL中删除重复数据SQL的三种写法,文中通过代码示例讲解的非常详细,对大家的学习或工作有一定的帮助,需要的朋友可以参考下... 目录方法一:使用 left join + 子查询删除重复数据(推荐)方法二:创建临时表(需分多步执行,逻辑清晰,但会

Java实现任务管理器性能网络监控数据的方法详解

《Java实现任务管理器性能网络监控数据的方法详解》在现代操作系统中,任务管理器是一个非常重要的工具,用于监控和管理计算机的运行状态,包括CPU使用率、内存占用等,对于开发者和系统管理员来说,了解这些... 目录引言一、背景知识二、准备工作1. Maven依赖2. Gradle依赖三、代码实现四、代码详解五

详谈redis跟数据库的数据同步问题

《详谈redis跟数据库的数据同步问题》文章讨论了在Redis和数据库数据一致性问题上的解决方案,主要比较了先更新Redis缓存再更新数据库和先更新数据库再更新Redis缓存两种方案,文章指出,删除R... 目录一、Redis 数据库数据一致性的解决方案1.1、更新Redis缓存、删除Redis缓存的区别二

Redis事务与数据持久化方式

《Redis事务与数据持久化方式》该文档主要介绍了Redis事务和持久化机制,事务通过将多个命令打包执行,而持久化则通过快照(RDB)和追加式文件(AOF)两种方式将内存数据保存到磁盘,以防止数据丢失... 目录一、Redis 事务1.1 事务本质1.2 数据库事务与redis事务1.2.1 数据库事务1.

Oracle Expdp按条件导出指定表数据的方法实例

《OracleExpdp按条件导出指定表数据的方法实例》:本文主要介绍Oracle的expdp数据泵方式导出特定机构和时间范围的数据,并通过parfile文件进行条件限制和配置,文中通过代码介绍... 目录1.场景描述 2.方案分析3.实验验证 3.1 parfile文件3.2 expdp命令导出4.总结

更改docker默认数据目录的方法步骤

《更改docker默认数据目录的方法步骤》本文主要介绍了更改docker默认数据目录的方法步骤,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 目录1.查看docker是否存在并停止该服务2.挂载镜像并安装rsync便于备份3.取消挂载备份和迁

不删数据还能合并磁盘? 让电脑C盘D盘合并并保留数据的技巧

《不删数据还能合并磁盘?让电脑C盘D盘合并并保留数据的技巧》在Windows操作系统中,合并C盘和D盘是一个相对复杂的任务,尤其是当你不希望删除其中的数据时,幸运的是,有几种方法可以实现这一目标且在... 在电脑生产时,制造商常为C盘分配较小的磁盘空间,以确保软件在运行过程中不会出现磁盘空间不足的问题。但在

Java如何接收并解析HL7协议数据

《Java如何接收并解析HL7协议数据》文章主要介绍了HL7协议及其在医疗行业中的应用,详细描述了如何配置环境、接收和解析数据,以及与前端进行交互的实现方法,文章还分享了使用7Edit工具进行调试的经... 目录一、前言二、正文1、环境配置2、数据接收:HL7Monitor3、数据解析:HL7Busines

Mybatis拦截器如何实现数据权限过滤

《Mybatis拦截器如何实现数据权限过滤》本文介绍了MyBatis拦截器的使用,通过实现Interceptor接口对SQL进行处理,实现数据权限过滤功能,通过在本地线程变量中存储数据权限相关信息,并... 目录背景基础知识MyBATis 拦截器介绍代码实战总结背景现在的项目负责人去年年底离职,导致前期规