EISeg标注多文件夹合并

提供一个脚本,专门合并百度的语义分割标注工具EISeg生成的文件夹。
EISeg默认标注完之后会在你的文件夹下面生成一个label文件夹,里面会存放png格式的标注图像和一个annotations.json文件。该脚本的作用就是将dirpath路径下所有的标注图像的文件夹合并成一个,文件会被从重命名为序号为1开始的数字名字。

import os
import codecs
import threadpool
import json
import shutil


dirpath = r'xxx'
dst_path_dir = r'xxx'

annotation_files = [os.path.join(y, file) for y, z, x in os.walk(dirpath)
                        for file in x if os.path.split(file)[1] == 'annotations.json']

# if not os.path.exists(dst_path_dir):
#     os.makedirs(dst_path_dir)
index_files = []
index = 0
for annotation_file in annotation_files:
    dir = os.path.split(annotation_file)[0].replace('label', '')
    with codecs.open(annotation_file) as f:
        data = json.load(f)
        for info in data['images']:
            index_files.append([index, os.path.join(dir, info['file_name'])])
            index += 1
dst_label_dir = os.path.join(dst_path_dir, 'labels')
dst_img_dir = os.path.join(dst_path_dir, 'images')
if not os.path.exists(dst_label_dir):
    os.makedirs(dst_label_dir)
if not os.path.exists(dst_img_dir):
    os.makedirs(dst_img_dir)


def ThreadFun_c1(file):
    index = file[0]
    file = file[1]
    print(file)

    src_label_dir = os.path.join(os.path.split(file)[0], 'label')
    label_name = os.path.splitext(os.path.split(file)[1])[0] + '.png'
    img_name = os.path.split(file)[1]

    dst_label_name = '{}.png'.format(index)
    dst_img_name = '{}{}'.format(index, os.path.splitext(img_name)[1])

    shutil.copy(os.path.join(src_label_dir, label_name), os.path.join(dst_label_dir, dst_label_name))
    shutil.copy(file, os.path.join(dst_img_dir, dst_img_name))


# 定义了一个线程池,最多创建16个线程
pool = threadpool.ThreadPool(16)
# 创建要开启多线程的函数,以及函数相关参数和回调函数,其中回调数可以不写,default是none
requests = threadpool.makeRequests(ThreadFun_c1, index_files)
# 将所有要运行多线程的请求扔进线程池
[pool.putRequest(req) for req in requests]
# 所有的线程完成工作后退出
pool.wait()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值