• Python将已标注的两张图片进行上下拼接并修改、合并其对应的Labelme标注文件


    Python将已标注的两张图片进行上下拼接并修改、合并其对应的Labelme标注文件

    在这里插入图片描述

    前言

    前提条件

    相关介绍

    • Python是一种跨平台的计算机程序设计语言。是一个高层次的结合了解释性、编译性、互动性和面向对象的脚本语言。最初被设计用于编写自动化脚本(shell),随着版本的不断更新和语言新功能的添加,越多被用于独立的、大型项目的开发。
    • PyTorch 是一个深度学习框架,封装好了很多网络和深度学习相关的工具方便我们调用,而不用我们一个个去单独写了。它分为 CPU 和 GPU 版本,其他框架还有 TensorFlow、Caffe 等。PyTorch 是由 Facebook 人工智能研究院(FAIR)基于 Torch 推出的,它是一个基于 Python 的可续计算包,提供两个高级功能:1、具有强大的 GPU 加速的张量计算(如 NumPy);2、构建深度神经网络时的自动微分机制。
    • YOLOv5是一种单阶段目标检测算法,该算法在YOLOv4的基础上添加了一些新的改进思路,使其速度与精度都得到了极大的性能提升。它是一个在COCO数据集上预训练的物体检测架构和模型系列,代表了Ultralytics对未来视觉AI方法的开源研究,其中包含了经过数千小时的研究和开发而形成的经验教训和最佳实践。
    • Labelme是一款图像标注工具,由麻省理工(MIT)的计算机科学和人工智能实验室(CSAIL)研发。它是用Python和PyQT编写的,开源且免费。Labelme支持Windows、Linux和Mac等操作系统。
    • 这款工具提供了直观的图形界面,允许用户在图像上标注多种类型的目标,例如矩形框、多边形、线条等,甚至包括更复杂的形状。标注结果以JSON格式保存,便于后续处理和分析。这些标注信息可以用于目标检测、图像分割、图像分类等任务。
    • 总的来说,Labelme是一款强大且易用的图像标注工具,可以满足不同的图像处理需求。
    • Labelme标注json文件是一种用于存储标注信息的文件格式,它包含了以下几个主要的字段:
      • version: Labelme的版本号,例如"4.5.6"。
      • flags: 一些全局的标志,例如是否是分割任务,是否有多边形,等等。
      • shapes: 一个列表,每个元素是一个字典,表示一个标注对象。每个字典包含了以下几个字段:
        • label: 标注对象的类别名称,例如"dog"。
        • points: 一个列表,每个元素是一个坐标对,表示标注对象的边界点,例如[[10, 20], [30, 40]]。
        • group_id: 标注对象的分组编号,用于表示属于同一组的对象,例如1。
        • shape_type: 标注对象的形状类型,例如"polygon",“rectangle”,“circle”,等等。
        • flags: 一些针对该标注对象的标志,例如是否是难例,是否被遮挡,等等。
      • lineColor: 标注对象的边界线颜色,例如[0, 255, 0, 128]。
      • fillColor: 标注对象的填充颜色,例如[255, 0, 0, 128]。
      • imagePath: 图像文件的相对路径,例如"img_001.jpg"。
      • imageData: 图像文件的二进制数据,经过base64编码后的字符串,例如"iVBORw0KGgoAAAANSUhEUgAA…"。
      • imageHeight: 图像的高度,例如600。
      • imageWidth: 图像的宽度,例如800。

    以下是一个Labelme标注json文件的示例:

    {
      "version": "4.5.6",
      "flags": {},
      "shapes": [
        {
          "label": "dog",
          "points": [
            [
              121.0,
              233.0
            ],
            [
              223.0,
              232.0
            ],
            [
              246.0,
              334.0
            ],
            [
              121.0,
              337.0
            ]
          ],
          "group_id": null,
          "shape_type": "polygon",
          "flags": {}
        }
      ],
      "lineColor": [
        0,
        255,
        0,
        128
      ],
      "fillColor": [
        255,
        0,
        0,
        128
      ],
      "imagePath": "img_001.jpg",
      "imageData": "iVBORw0KGgoAAAANSUhEUgAA...",
      "imageHeight": 600,
      "imageWidth": 800
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46

    实验环境

    • Python 3.x (面向对象的高级语言)

    上下拼接图片并修改、合并其对应的Labelme标注文件

    • 背景:将标注好的数据集,上下拼接图片,以扩充数据集图片的形状大小,更好的输入进去网络,训练模型。
    • 目录结构示例
      在这里插入图片描述

    代码实现

    在这里插入图片描述

    • img_test:要拼接的图片数据集和Labelme标注的Json文件所在的文件夹。

    在这里插入图片描述

    {
      "version": "5.1.1",
      "flags": {},
      "shapes": [
        {
          "label": "0",
          "points": [
            [
              71.08019639934534,
              33.10965630114566
            ],
            [
              81.55482815057283,
              110.68739770867431
            ]
          ],
          "group_id": null,
          "shape_type": "rectangle",
          "flags": {}
        }
      ],
      "imagePath": "1.png",
      "imageData": null,
      "imageHeight": 160,
      "imageWidth": 160
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    在这里插入图片描述

    {
      "version": "5.1.1",
      "flags": {},
      "shapes": [
        {
          "label": "1",
          "points": [
            [
              77.29950900163666,
              61.58756137479541
            ],
            [
              87.11947626841243,
              97.59410801963993
            ]
          ],
          "group_id": null,
          "shape_type": "rectangle",
          "flags": {}
        }
      ],
      "imagePath": "2.png",
      "imageData": null,
      "imageHeight": 160,
      "imageWidth": 160
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    import os
    import cv2
    import json
    import math
    
    def xyxy2xywh(rect):
        '''
        (x1,y1,x2,y2) -> (x,y,w,h)
        '''
        return [rect[0],rect[1],rect[2]-rect[0],rect[3]-rect[1]]
    
    def xywh2xyxy(rect):
        '''
        (x,y,w,h) -> (x1,y1,x2,y2)
        '''
        return [rect[0],rect[1],rect[0]+rect[2],rect[1]+rect[3]]
    
    
    def is_RecA_RecB_interSect(RecA, RecB): # Rec = [xmin,ymin,xmax,ymax]
        # 获取交集区域的[xmin,ymin,xmax,ymax]
        x_A_and_B_min = max(RecA[0], RecB[0])
        y_A_and_B_min = max(RecA[1], RecB[1])
        x_A_and_B_max = min(RecA[2], RecB[2])
        y_A_and_B_max = min(RecA[3], RecB[3])
        # 计算交集部分面积, 当(xmax - xmin)为负时,说明A与B框无交集,直接置为0。 (ymax - ymin)同理。
        interArea = max(0, x_A_and_B_max - x_A_and_B_min) * max(0, y_A_and_B_max - y_A_and_B_min)
        return interArea > 0
    
    def merge_RecA_RecB(RecA, RecB): # Rec = [xmin,ymin,xmax,ymax]
        # 获取合并区域的[xmin,ymin,xmax,ymax]
        xmin = min(RecA[0], RecB[0])
        ymin = min(RecA[1], RecB[1])
        xmax = max(RecA[2], RecB[2])
        ymax = max(RecA[3], RecB[3])
        return [xmin,ymin, xmax,ymax]
    
    '''
    递归是一个过程或函数在其定义或说明中有直接或间接调用自身的一种方法,
    它通常把一个大型复杂的问题层层转化为一个与原问题相似的规模较小的问题来求解。
    因此递归过程,最重要的就是查看能不能讲原本的问题分解为更小的子问题,这是使用递归的关键。
    
    
        终止条件:矩形框数为1或者为空。
        返回值: 新合并的矩形框
        本级任务: 每一级需要做的就是遍历从它开始的后续矩形框,寻找可以和他合并的矩形
    
    '''
    def merge_rect(box,labels):
        '''
        合并重叠框 
    
        输入参数: box :[[xmin,ymin,xmax,ymax],...]
                labels :['0', '0', '1', '1', '1', '2', '2', '2']
    
        返回:
            合并后的box:[[xmin,ymin,xmax,ymax],...]
            合并后的labels:['0', '1', '2']
        '''
        if len(box) == 1 or len(box) == 0 : # 矩形框数为1或者为空
            return box,labels
    
        for i in range(len(box)):
            RecA_xyxy = box[i]
            labelA = labels[i]
            for j in range(i+1, len(box)):
                RecB_xyxy = box[j]
                labelB = labels[i]
                if is_RecA_RecB_interSect(RecA_xyxy, RecB_xyxy)  and labelA==labelB:
                    rect_xyxy = merge_RecA_RecB(RecA_xyxy, RecB_xyxy)
                    # 使用remove(elem)来移除元素
                    box.remove(RecA_xyxy)
                    box.remove(RecB_xyxy)
                    box.append(rect_xyxy)
                    labels.pop(i)
                    labels.pop(j-1)
                    labels.append(labelA)
                    merge_rect(box,labels)
                    # 返回上一级循环,避免重复处理已合并的矩形
                    return box,labels
        return box,labels
    
    def xyxy2xminyminxmaxymax(rect):
        '''
        (x1,y1,x2,y2)  -> (xmin,ymin,xmax,ymax)
        '''
        xmin = min(rect[0],rect[2])
        ymin = min(rect[1],rect[3])
        xmax = max(rect[0],rect[2])
        ymax = max(rect[1],rect[3])
        return xmin,ymin,xmax,ymax
    
    def coord_recovery(res_list,img_height = 80):
        for i in range(len(res_list)):
            for j in res_list[i][1]:
                j[1] = j[1] + i*img_height
                j[3] = j[3] + i*img_height
            
            
            # res_list[i][1][0][1] = res_list[i][1][0][1] + i*img_height
            # res_list[i][1][0][3] = res_list[i][1][0][3] + i*img_height
        return res_list
    
    def read_write_json(in_json1_path,
                        in_json2_path,
                        output_json_path,
                        out_img_name,
                        new_img_height,
                        new_img_width,
                        json_dict = {
                                "version": "4.5.6",
                                "flags": {},
                                "shapes": [],
                            },
                    ):
        '''
        读取json文件
        '''
        with open(in_json1_path, "r", encoding='utf-8') as f:
            # json.load数据到变量json_data
            json1_data = json.load(f)
        with open(in_json2_path, "r", encoding='utf-8') as f:
            # json.load数据到变量json_data
            json2_data = json.load(f)
        
        img1_height = json1_data['imageHeight']
        img1_width = json1_data['imageWidth']
        img2_height = json2_data['imageHeight']
        img2_width = json2_data['imageWidth']
        labels = []
        boxes = []
        for i in json1_data['shapes']:
            labels.append(i['label'])
            rect = int(i['points'][0][0]),int(i['points'][0][1]),int(i['points'][1][0]),int(i['points'][1][1]) # x1,y1,x2,y2
            x1,y1,x2,y2 = xyxy2xminyminxmaxymax(rect)
            boxes.append([x1,y1,x2,y2])
    
        for i in json2_data['shapes']:
            labels.append(i['label'])
            rect = int(i['points'][0][0]),int(i['points'][0][1])+img1_height,int(i['points'][1][0]),int(i['points'][1][1])+img1_height # x1,y1,x2,y2
            x1,y1,x2,y2 = xyxy2xminyminxmaxymax(rect)
            boxes.append([x1,y1,x2,y2])
    
        merge_box,merge_labels = merge_rect(boxes,labels) # 合并相交的矩形
        # print(merge_labels,merge_box,sep='\n')
        for box,label in zip(merge_box,merge_labels):
            shapes_dict = {'label': '', 
                    'points': [], # [[x1,y1],[x2,y2]]
                    'group_id': None, 
                    'shape_type': 'rectangle', 
                    'flags': {}}
            shapes_dict['label'] = label
            x1,y1,x2,y2 = box
            shapes_dict['points'] = [[x1,y1],[x2,y2]]
            json_dict['shapes'].append(shapes_dict)
        
        '''
        写新的json文件
        '''
        json_dict["imagePath"] = out_img_name
        json_dict["imageData"] = None
        json_dict["imageHeight"] = new_img_height
        json_dict["imageWidth"] = new_img_width
        with open(output_json_path, 'w') as f:
            f.write(json.dumps(json_dict))
    
    
    def vconcat_img_json(img1_path,img2_path,json1_path,json2_path,output_dir):
        img1 = cv2.imread(img1_path)
        img2 = cv2.imread(img2_path)
        img1_img2_res = cv2.vconcat([img1, img2])
        new_img_height,new_img_width = img1_img2_res.shape[0],img1_img2_res.shape[1]
        img_type = '.png'
        out_img_name = img1_path.split('/')[-1].split('.')[0] +'_'+ img2_path.split('/')[-1].split('.')[0]+img_type
        out_img_path = os.path.join(output_dir,out_img_name)
        # print(out_img_path)
        # 保存图片
        cv2.imwrite(out_img_path,img1_img2_res)
        
        out_json_name = img1_path.split('/')[-1].split('.')[0] +'_'+ img2_path.split('/')[-1].split('.')[0]+".json"
        out_json_path = os.path.join(output_dir,out_json_name)
        # print(out_json_path)
        # 保存新的json文件
        read_write_json(json1_path,json2_path,out_json_path,out_img_name,new_img_height,new_img_width)
        
    if __name__=="__main__":
        output_dir = "output"
        if not os.path.exists(output_dir):
            os.mkdir(output_dir)
    
        img1_path = 'img_test/1.png'
        img2_path = 'img_test/2.png'
        
        json1_path = 'img_test/1.json'
        json2_path = 'img_test/2.json'
    
        vconcat_img_json(img1_path,img2_path,json1_path,json2_path,output_dir)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196

    输出结果

    在这里插入图片描述

    • output:拼接后图片数据集和Labelme标注的Json文件所在的文件夹。

    在这里插入图片描述

    {
        "version": "4.5.6",
        "flags": {},
        "shapes": [
            {
                "label": "0",
                "points": [
                    [
                        71,
                        33
                    ],
                    [
                        81,
                        110
                    ]
                ],
                "group_id": null,
                "shape_type": "rectangle",
                "flags": {}
            },
            {
                "label": "1",
                "points": [
                    [
                        77,
                        221
                    ],
                    [
                        87,
                        257
                    ]
                ],
                "group_id": null,
                "shape_type": "rectangle",
                "flags": {}
            }
        ],
        "imagePath": "1_2.png",
        "imageData": null,
        "imageHeight": 320,
        "imageWidth": 160
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
  • 相关阅读:
    app自动化(五)POM模式框架搭建
    RabbitMQ, DelayQueue, Redis的介绍以及IDEA的实现
    一位底层工程师参加谷歌开发者大会后的感想
    set(CMAKE_BUILD_TYPE debug 和 set(CMAKE_CXX_FLAGS -g的用途是一样的吗
    数据结构之堆 → 不要局限于堆排序
    PostgreSQL与MySQL,谁更胜一筹
    【概率论与数理统计】
    分类预测 | MATLAB实现CNN卷积神经网络数据分类预测
    【移动端网页特效】01-触屏事件和常用对象列表
    基于ssm+vue的人性话服装定制系统 计算机毕业设计
  • 原文地址:https://blog.csdn.net/FriendshipTang/article/details/134489801