语义分割中,利用python将json文件转mask图片

import base64
import json
import os
import os.path as osp
import numpy as np
from PIL import Image
from labelme import utils
from skimage import img_as_ubyte
import cv2

json_file = r"D:\BaiduNetdiskDownload\laser_spot"

list_path = os.listdir(json_file)

for i in range(0, len(list_path)):
    path = os.path.join(json_file, list_path[i])
    if os.path.isfile(path) & path.endswith('.json'):

        data = json.load(open(path))  # 读取整个json文件中的内容
        # version(labelme版本)flag shapes(标签信息,记录了当时标记的每一个点) imagePath imageData(base64加密后的原图信息) imageHeight imageWidth
        # shape又包括shape_type flags lineColor fillColor
        imageData = data.get('imageData')
        if not imageData:
            imagePath = os.path.join(os.path.dirname(json_file), data['imagePath'])
            with open(imagePath, 'rb') as f:
                imageData = f.read()
                imageData = base64.b64encode(imageData).decode('utf-8')

        '''def img_b64_to_arr(img_b64):
                    img_data = base64.b64decode(img_b64)
                    img_arr = img_data_to_arr(img_data)
                    return img_arr'''
        img = utils.img_b64_to_arr(imageData)  # 原始图像

        '''img_dir = osp.join(osp.dirname(json_file), "img1")
        if not osp.exists(img_dir):
            os.mkdir(img_dir)
        img_resize = cv2.resize(img, (384, 384), interpolation=cv2.INTER_CUBIC)
        out_img = Image.fromarray(img_resize)
        out_img.save(img_dir + '/' + str(i) + '.tif')'''

        label_name_to_value = {'_background_': 0}
        for shape in sorted(data['shapes'], key=lambda x: x['label']):
            # sorted排序,key是排序的规则,“lambda x: x['label']”为对前面data['shapes']里的label进行排序
            label_name = shape['label']
            if label_name in label_name_to_value:
                label_value = label_name_to_value[label_name]
            else:
                label_value = len(label_name_to_value)  # 像素点的值等于标签在标签字典集中的位置(刚好是字典长度)
                label_name_to_value[label_name] = label_value  # 加入字典

        lbl, _ = utils.shapes_to_label(img.shape, data['shapes'], label_name_to_value)

        mask_dir = osp.join(osp.dirname(json_file), "mask")
        if not osp.exists(mask_dir):
            os.mkdir(mask_dir)
            #utils.lblsave(osp.join(mask_dir, 'label1.png'), lbl) #三通道标签
        mask_dst = img_as_ubyte(lbl)
        mask_dst = np.uint8(mask_dst) * 255
        mask_dst = cv2.resize(mask_dst, (384, 384), interpolation=cv2.INTER_CUBIC)
        out_mask = Image.fromarray(mask_dst)
        out_mask.save(mask_dir + '/' + str(i) + '.tif')

  • 0
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
如果你有一个语义分割JSON文件,其包含个像素的标注信息,你可以将其转换为gaug库支持的语义分割掩码格式。下面是将JSON文件转换为Imgaug格式的步: 1. 读取文件并解析标数据,使用Pythonjson库将JSON文件取为Python对象。假设你的JSON文件名为 "annotations.json",可以使用以下代码读取和解析文件: ```python import json with open('annotations.json', 'r') as f: data = json.load(f) ``` 2. 定义一个函数或使用适当的方法,将标注数据转换为Imgaug格式。Imgaug库支持使用语义分割掩码表示图像的标注。你需要将从JSON文件提取的标注数据转换为这种格式。以下是一个示例函数,可以将JSON文件语义分割标注数据转换为Imgaug格式: ```python import imgaug as ia from imgaug.augmentables.segmaps import SegmentationMapOnImage def convert_annotations(data): annotations = [] for sample in data: image_path = sample['image_path'] mask_data = sample['mask_data'] mask = SegmentationMapOnImage(mask_data, shape=image_path.shape) annotation_dict = {'image': image_path, 'segmentation_maps': mask} annotations.append(annotation_dict) return annotations ``` 上述代码假设每个标注样本都有一个'image_path'键,表示图像文件路径,以及一个'mask_data'键,表示该图像的语义分割掩码数据。 3. 最后,将转换后的标注数据保存为Imgaug支持的文件格式(如pickle)。你可以使用Imgaug库提供的方法来保存标注数据。以下是一个示例代码: ```python import pickle annotations = convert_annotations(data) with open('annotations.pkl', 'wb') as f: pickle.dump(annotations, f) ``` 上述代码转换后的标注数据保存为名为 "annotations.pkl" 的pickle文件。 请注意,以上代码仅提供了一个示例,你需要根据你的JSON文件结构和需求进行相应的修改。另外,你可能还需要安装Imgaug库和其他必要的依赖项。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值