批量转换labelme生成的json文件

本文介绍如何批量转换Labelme生成的json文件。高版本的Labelme不支持批量转换,但可以采用修改json_to_dataset.py文件或者使用文中提供的新方法。该方法只需指定包含json文件的文件夹路径,程序会生成四个文件夹:cv_mask(标签文件)、json(原始json文件)、pic(图片文件)和labelme_json(单个json文件生成的文件夹)。在实际使用中,主要关注cv_mask和pic文件夹的内容。
摘要由CSDN通过智能技术生成

批量转换labelme生成的json文件

labelme

labelme是简单但是强大的标签制作工具,但是高版本不能批量转换,如果单个转换还是很麻烦的

单个json文件转换

在命令行中使用labelme_json_to_dataset json_file_path命令就可以了

批量转换

很多批量转换的方法是修改高版本的json_to_dataset.py文件来实现,这里提供一种新方法。

import json
import os
import os.path as osp
import warnings
from shutil import copyfile
import PIL.Image
import yaml
from labelme import utils
import time


def main():

    json_file = '只含有json文件的待解码的文件夹'


    list = os.listdir(json_file)
    if not os.path.exists(json_file + '/' + 'pic'):
        os.makedirs(json_file + '/' + 'pic')
    if not os.path.exists(json_file + '/' + 'cv_mask'):
        os.makedirs(json_file + '/' + 'cv_mask')
    if not os.path.exists(json_file + '/' + 'labelme_json'):
        os.makedirs(json_file + '/' + 'labelme_json')
    if not os
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值