语义分割:标注json文件转mask

  • 以下代码支持,可以支持新版本的labelme,不需要要卸载重新安装labelme 3.16.7
  • 可以直接根据当前新版本的labelme标注好的json文件,直接进行mask转换
  • 这个写的比较细节
    import argparse
    import base64
    import json
    import os
    import os.path as osp
     
    import imgviz
    import PIL.Image
     
    from labelme.logger import logger
    from labelme import utils
     
     
    def main():
        logger.warning(
            "This script is aimed to demonstrate how to convert the "
            "JSON file to a single image dataset."
        )
        logger.warning(
            "It won't handle multiple JSON files to generate a "
            "real-use dataset."
        )
     
        # json_file是标注完之后生成的json文件的目录。out_dir是输出目录,即数据处理完之后文件保存的路径
        json_file = r"D:\img\json_dir"
        
        out_jpgs_path   = "datasets/JPEGImages"
        out_mask_path   = "datasets/SegmentationClass"
    
        # 如果输出的路径不存在,则自动创建这个路径
        if not osp.exists(out_jpgs_path):
            os.mkdir(out_jpgs_path)
        
        if not osp.exists(out_mask_path):
            os.mkdir(out_mask_path)
     
        for file_name in os.listdir(json_file):
            # 遍历json_file里面所有的文件,并判断这个文件是不是以.json结尾
            if file_name.endswith(".json"):
                path = os.path.join(json_file, file_name)
                if os.path.isfile(path):
                    data = json.load(open(path))
     
                    # 获取json里面的图片数据,也就是二进制数据
                    imageData = data.get("imageData")
                    # 如果通过data.get获取到的数据为空,就重新读取图片数据
                    if not imageData:
                        imagePath = os.path.join(json_file, data["imagePath"])
                        with open(imagePath, "rb") as f:
                            imageData = f.read()
                            imageData = base64.b64encode(imageData).decode("utf-8")
                    #  将二进制数据转变成numpy格式的数据
                    img = utils.img_b64_to_arr(imageData)
    
                    
                    # 将类别名称转换成数值,以便于计算
                    label_name_to_value = {"_background_": 0}
                    for shape in sorted(data["shapes"], key=lambda x: x["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)
     
                    label_names = [None] * (max(label_name_to_value.values()) + 1)
                    for name, value in label_name_to_value.items():
                        label_names[value] = name
     
                    lbl_viz = imgviz.label2rgb(
                        label=lbl, image=imgviz.asgray(img), label_names=label_names, loc="rb"
                    )
     
            
                    # 将输出结果保存,
                    PIL.Image.fromarray(img).save(osp.join(out_jpgs_path, file_name.split(".")[0]+'.jpg'))
                    utils.lblsave(osp.join(out_mask_path, "%s.png" % file_name.split(".")[0]), lbl)
        
        print("Done")
     
     
     
    if __name__ == "__main__":
        main()
    
    ,其他转换都或多少不好用
  • 2
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
如果你有一个语义分割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库和其他必要的依赖项。

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值