Labelme标记json文件转voc的xml格式

Labelme标记json文件转voc的xml格式

使用Lablme标记的数据生成的是json文件,但是我们常用的xml格式的,更加直观方便,转yolo也是轻而易举

json 文件格式如下

image-20220724160959286

我们常见的xml格式(以voc 中xml文件为例)

image-20220724161133447

同时 我们也可以顺带将数据整理成VOC的排版格式

image-20220724162033787

转换代码

'''
将json文件转为类似voc中的xml格式
'''

import os
import numpy as np
import codecs
import json
from glob import glob
import cv2
import shutil
from sklearn.model_selection import train_test_split

# 1.原始labelme标注数据路径
labelme_path = "ECM/Json/"
# 保存路径
saved_path = "VOC2007/"

isUseTest=True#是否创建test集
# 2.创建要求文件夹
if not os.path.exists(saved_path + "Annotations"):
    os.makedirs(saved_path + "Annotations")
if not os.path.exists(saved_path + "JPEGImages/"):
    os.makedirs(saved_path + "JPEGImages/")
if not os.path.exists(saved_path + "ImageSets/Main/"):
    os.makedirs(saved_path + "ImageSets/Main/")
# 3.获取待处理文件
files = glob(labelme_path + "*.json")
## windows路径
files = [i.replace("\\","/").split("/")[-1].split(".json")[0] for i in files]
print(files)
# 4.读取标注信息并写入 xml
for json_file_ in files:
    json_filename = labelme_path + json_file_ + ".json"
    json_file = json.load(open(json_filename, "r", encoding="utf-8"))
    height, width, channels = cv2.imread('ECM/Images/' + json_file_ + ".jpg").shape
    with codecs.open(saved_path + "Annotations/" + json_file_ + ".xml", "w", "utf-8") as xml:

        xml.write('<annotation>\n')
        xml.write('\t<folder>' + 'ECM' + '</folder>\n')
        xml.write('\t<filename>' + json_file_ + ".jpg" + '</filename>\n')
        xml.write('\t<source>\n')
        xml.write('\t\t<database>ECM_Data</database>\n')
        xml.write('\t\t<annotation>ECM</annotation>\n')
        xml.write('\t\t<image>flickr</image>\n')
        xml.write('\t\t<flickrid>NULL</flickrid>\n')
        xml.write('\t</source>\n')
        xml.write('\t<owner>\n')
        xml.write('\t\t<flickrid>NULL</flickrid>\n')
        xml.write('\t\t<name>XT</name>\n')
        xml.write('\t</owner>\n')
        xml.write('\t<size>\n')
        xml.write('\t\t<width>' + str(width) + '</width>\n')
        xml.write('\t\t<height>' + str(height) + '</height>\n')
        xml.write('\t\t<depth>' + str(channels) + '</depth>\n')
        xml.write('\t</size>\n')
        xml.write('\t\t<segmented>0</segmented>\n')
        for multi in json_file["shapes"]:
            points = np.array(multi["points"])
            labelName=multi["label"]
            xmin = min(points[:, 0])
            xmax = max(points[:, 0])
            ymin = min(points[:, 1])
            ymax = max(points[:, 1])
            label = multi["label"]
            if xmax <= xmin:
                pass
            elif ymax <= ymin:
                pass
            else:
                xml.write('\t<object>\n')
                xml.write('\t\t<name>' + labelName+ '</name>\n')
                xml.write('\t\t<pose>Unspecified</pose>\n')
                xml.write('\t\t<truncated>1</truncated>\n')
                xml.write('\t\t<difficult>0</difficult>\n')
                xml.write('\t\t<bndbox>\n')
                xml.write('\t\t\t<xmin>' + str(int(xmin)) + '</xmin>\n')
                xml.write('\t\t\t<ymin>' + str(int(ymin)) + '</ymin>\n')
                xml.write('\t\t\t<xmax>' + str(int(xmax)) + '</xmax>\n')
                xml.write('\t\t\t<ymax>' + str(int(ymax)) + '</ymax>\n')
                xml.write('\t\t</bndbox>\n')
                xml.write('\t</object>\n')
                print(json_filename, xmin, ymin, xmax, ymax, label)
        xml.write('</annotation>')
# 5.复制图片到 VOC2007/JPEGImages/下

# 自己的图片路径
image_files = glob("ECM/Images/" + "*.jpg")
print("copy image files to VOC007/JPEGImages/")
for image in image_files:
    shutil.copy(image, saved_path + "JPEGImages/")
# 6.split files for txt
txtsavepath = saved_path + "ImageSets/Main/"
ftrainval = open(txtsavepath + '/trainval.txt', 'w')
ftest = open(txtsavepath + '/test.txt', 'w')
ftrain = open(txtsavepath + '/train.txt', 'w')
fval = open(txtsavepath + '/val.txt', 'w')
total_files = glob("./VOC2007/Annotations/*.xml")
total_files = [i.replace("\\","/").split("/")[-1].split(".xml")[0] for i in total_files]
trainval_files=[]
test_files=[]
if isUseTest:
    trainval_files, test_files = train_test_split(total_files, test_size=0.2, random_state=42)
else:
    trainval_files=total_files
for file in trainval_files:
    ftrainval.write(file + "\n")
# split
train_files, val_files = train_test_split(trainval_files, test_size=0.15, random_state=55)
# train
for file in train_files:
    ftrain.write(file + "\n")
# val
for file in val_files:
    fval.write(file + "\n")
for file in test_files:
    print(file)
    ftest.write(file + "\n")
ftrainval.close()
ftrain.close()
fval.close()
ftest.close()

检测是否成功

1、打开labelimg软件

2、Open Dir,选择标注文件所在文件夹Annatations

3、Change Save Dir,选择图片所在文件夹JPEGImages

下一篇再写xml装yolo

  • 0
    点赞
  • 29
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
好的,您可以使用以下代码实现: ```python import os import json import xml.etree.ElementTree as ET # 定义标签和颜色 LABELS = {'circle': 0} COLORS = {'circle': '0,255,0'} # 定义json文件路径和xml文件路径 json_dir = '/path/to/json/dir' xml_dir = '/path/to/xml/dir' # 遍历json文件夹中的所有文件 for json_file in os.listdir(json_dir): # 如果不是json文件,则跳过 if not json_file.endswith('.json'): continue # 读取json文件内容 with open(os.path.join(json_dir, json_file), 'r') as f: data = json.load(f) # 获取文件名(去掉扩展名) filename = os.path.splitext(json_file)[0] # 创建xml文件 root = ET.Element('annotation') # 添加filename元素 ET.SubElement(root, 'filename').text = filename + '.jpg' # 添加size元素 size = ET.SubElement(root, 'size') ET.SubElement(size, 'width').text = str(data['imageWidth']) ET.SubElement(size, 'height').text = str(data['imageHeight']) ET.SubElement(size, 'depth').text = '3' # 遍历shapes for shape in data['shapes']: label = shape['label'] if label not in LABELS: continue # 添加object元素 obj = ET.SubElement(root, 'object') ET.SubElement(obj, 'name').text = label ET.SubElement(obj, 'pose').text = 'Unspecified' ET.SubElement(obj, 'truncated').text = '0' ET.SubElement(obj, 'difficult').text = '0' # 添加bndbox元素 bndbox = ET.SubElement(obj, 'bndbox') if shape['shape_type'] == 'circle': # 如果是圆形,获取外切矩形 x, y = shape['points'][0] r = shape['points'][1][0] - x ET.SubElement(bndbox, 'xmin').text = str(round(x - r)) ET.SubElement(bndbox, 'ymin').text = str(round(y - r)) ET.SubElement(bndbox, 'xmax').text = str(round(x + r)) ET.SubElement(bndbox, 'ymax').text = str(round(y + r)) else: # 否则,获取矩形 x1, y1 = shape['points'][0] x2, y2 = shape['points'][1] ET.SubElement(bndbox, 'xmin').text = str(round(min(x1, x2))) ET.SubElement(bndbox, 'ymin').text = str(round(min(y1, y2))) ET.SubElement(bndbox, 'xmax').text = str(round(max(x1, x2))) ET.SubElement(bndbox, 'ymax').text = str(round(max(y1, y2))) # 添加difficult元素 ET.SubElement(obj, 'difficult').text = '0' # 添加bndbox颜色 ET.SubElement(obj, 'color').text = COLORS[label] # 保存xml文件 xml_file = os.path.join(xml_dir, filename + '.xml') tree = ET.ElementTree(root) tree.write(xml_file) ``` 这段代码会将指定文件夹中的所有json文件换为xml文件,并将xml文件保存到指定文件夹中。处理圆形标注时,会将圆形换为外切矩形。同时,会为每个标注添加颜色信息,以便在标注时更加直观。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值