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

【目标检测】YOLO格式数据集txt标注转换为COCO格式JSON

YOLO格式数据集:

images
|--train
|--test
|--val


labels
|--train
|--test
|--val

代码:

import os
import json
from PIL import Image

# 设置数据集路径
dataset_path = "path/to/your/dataset"
images_path = os.path.join(dataset_path, "images")
labels_path = os.path.join(dataset_path, "labels")

# 类别映射
categories = [
    {"id": 1, "name": "category1"},
    {"id": 2, "name": "category2"},
    # 添加更多类别
]

# YOLO格式转COCO格式的函数
def convert_yolo_to_coco(x_center, y_center, width, height, img_width, img_height):
    x_min = (x_center - width / 2) * img_width
    y_min = (y_center - height / 2) * img_height
    width = width * img_width
    height = height * img_height
    return [x_min, y_min, width, height]

# 初始化COCO数据结构
def init_coco_format():
    return {
        "images": [],
        "annotations": [],
        "categories": categories
    }

# 处理每个数据集分区
for split in ['train', 'test', 'val']:
    coco_format = init_coco_format()
    annotation_id = 1

    for img_name in os.listdir(os.path.join(images_path, split)):
        if img_name.lower().endswith(('.png', '.jpg', '.jpeg')):
            img_path = os.path.join(images_path, split, img_name)
            label_path = os.path.join(labels_path, split, img_name.replace("jpg", "txt"))

            img = Image.open(img_path)
            img_width, img_height = img.size
            image_info = {
                "file_name": img_name,
                "id": len(coco_format["images"]) + 1,
                "width": img_width,
                "height": img_height
            }
            coco_format["images"].append(image_info)

            if os.path.exists(label_path):
                with open(label_path, "r") as file:
                    for line in file:
                        category_id, x_center, y_center, width, height = map(float, line.split())
                        bbox = convert_yolo_to_coco(x_center, y_center, width, height, img_width, img_height)
                        annotation = {
                            "id": annotation_id,
                            "image_id": image_info["id"],
                            "category_id": int(category_id) + 1,
                            "bbox": bbox,
                            "area": bbox[2] * bbox[3],
                            "iscrowd": 0
                        }
                        coco_format["annotations"].append(annotation)
                        annotation_id += 1

    # 为每个分区保存JSON文件
    with open(f"path/to/output/{split}_coco_format.json", "w") as json_file:
        json.dump(coco_format, json_file, indent=4)


http://www.kler.cn/a/159382.html

相关文章:

  • 黑盒测试案例设计方法的使用(1)
  • 【Redis】Redis的一些应用场景及使用策略
  • 五、函数封装及调用、参数及返回值、作用域、匿名函数、立即执行函数
  • 【Qt实现虚拟键盘】
  • windows tomcat 报错后如何让窗口不闪退
  • 论文 | On Second Thought, Let’s Not Think Step by Step!
  • vue.config.js文件重写打包工具配置信息
  • 外贸建站平台工具推荐?做海洋建站的平台?
  • 使用unity开发Pico程序,场景中锯齿问题
  • 【影刀RPA_写入日期到飞书表格】
  • Docker 安装 Redis 挂载配置
  • [Python]字典的应用:赋值表达式转化为字典
  • Kafka中的Topic
  • 【Flink on k8s】- 4 - 在 Kubernetes 上运行容器
  • 【五分钟】学会利用cv2.resize()函数实现图像缩放
  • Ant Design Vue(v1.7.8)a-table组件的插槽功能
  • 【LVS实战】05 keepalived脑裂问题解决方案
  • 协同过滤算法之vue+springboot个性化电影评分推荐系统6n498
  • 振弦采集仪在土体与岩体监测中的可靠性与精度分析
  • 【信息安全】-个人敏感信息、个人信息、个人金融信息
  • js中for 循环和 map 循环都是是什么,他们有什么区别
  • 【hacker送书第9期】算法训练营(入门篇)
  • kafka 集群 ZooKeeper 模式搭建
  • 执法记录仪、一体化布控球等目前支持的AI智能算法、视频智能分析算法有哪些
  • 【链表Linked List】力扣-114 二叉树展开为链表
  • GPT-Crawler一键爬虫构建GPTs知识库