自动xml转json,voc转coco格式

自动xml转json,voc转coco格式

介绍

将xml转json,标注文件转coco格式,
其他转换:
自动xml转txt,最简单,不报错

txt格式转换xml格式数据集,yolo转voc

自动xml转json,voc转coco格式

json转xml转txt,coco转yolo转voc

代码

代码

代码最后修改imgs_input,xml_folder,class_name

import logging
import os
import time
import xml.etree.ElementTree as ET
import json
from PIL import Image


def get_file_list(path, type=".xml"):
    file_names = []
    for maindir, subdir, file_name_list in os.walk(path):
        for filename in file_name_list:
            apath = os.path.join(maindir, filename)
            ext = os.path.splitext(apath)[1]
            if ext == type:
                file_names.append(filename)
    return file_names


def xml_to_coco(ann_path, class_names):
    """
    convert xml annotations to coco_api
    :param ann_path:
    :return:
    """
    class_name_dict = dict(zip(class_names, range(1, len(class_names) + 1)))
    print("loading annotations into memory...")
    tic = time.time()
    ann_file_names = get_file_list(ann_path, type=".xml")
    logging.info("Found {} annotation files.".format(len(ann_file_names)))
    image_info = []
    categories = []
    annotations = []
    for idx, supercat in enumerate(class_names):
        categories.append(
            {"supercategory": supercat, "id": idx + 1, "name": supercat}
        )
    ann_id = 1
    for idx, xml_name in enumerate(ann_file_names):
        tree = ET.parse(os.path.join(ann_path, xml_name))
        root = tree.getroot()
        file_name = root.find("filename").text
        # 获取图像尺寸
        img_path = imgs_input + '\\' + xml_name[0:-4] + r'.png'
        image = Image.open(img_path)
        width, height = image.size
        info = {
            "file_name": file_name,
            "height": height,
            "width": width,
            "id": idx + 1,
        }
        image_info.append(info)
        for _object in root.findall("object"):
            category = _object.find("name").text
            if category not in class_names:
                print(
                    "WARNING! {} is not in class_names! "
                    "Pass this box annotation.".format(category)
                )
                continue

            cat_id = class_name_dict[category]

            xmin = int(_object.find("bndbox").find("xmin").text)
            ymin = int(_object.find("bndbox").find("ymin").text)
            xmax = int(_object.find("bndbox").find("xmax").text)
            ymax = int(_object.find("bndbox").find("ymax").text)
            w = xmax - xmin
            h = ymax - ymin
            if w < 0 or h < 0:
                print(
                    "WARNING! Find error data in file {}! Box w and "
                    "h should > 0. Pass this box annotation.".format(xml_name)
                )
                continue
            coco_box = [max(xmin, 0), max(ymin, 0), min(w, width), min(h, height)]
            ann = {
                "image_id": idx + 1,  # 此处的图片序号,从1开始计算,该bbox所在的图片序号
                "bbox": coco_box,
                "category_id": cat_id,
                "iscrowd": 0,
                "id": ann_id,  # ann_id指的是bbox的序号
                "area": coco_box[2] * coco_box[3],
            }
            annotations.append(ann)  # annotation是一个list,包含了所有bbox的相关信息
            ann_id += 1

    coco_dict = {
        "images": image_info,
        "categories": categories,  # categories,从1开始计算
        "annotations": annotations,
    }

    print("Done (t={:0.2f}s)".format(time.time() - tic))

    return coco_dict


imgs_input = r'C:\Users\GW\Desktop\xu\data_coco\val2017'  # img
xml_folder = r'C:\Users\GW\Desktop\xu\data_coco\xml_val'  # xml
class_name = ['3_2', '9_1', '2_1', '8', '10_1', '10_2', '9_2', '2_2', '3_1']  # class

coco_dict = xml_to_coco(xml_folder, class_name)

"""
保存为json文件
"""
json_file = r"C:\Users\GW\Desktop\xu\data_coco\json"
json_str = json.dumps(coco_dict, indent=4)
with open(json_file, 'w') as json_fp:
    json_fp.write(json_str)
  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值