• json文件批量转为txt文件


    json文件批量转为txt文件

    1 批量json标注文件:

    在这里插入图片描述

    2 json所对应的各个图片:

    在这里插入图片描述

    3 每个json文件内容:

    [
     {
      "type": 1,
      "x": 1168,
      "y": 639,
      "width": 457,
      "height": 245,
      "segmentation": []
     },
     {
      "type": 1,
      "x": 831,
      "y": 626,
      "width": 77,
      "height": 57,
      "segmentation": []
     },
     {
      "type": 1,
      "x": 810,
      "y": 627,
      "width": 36,
      "height": 48,
      "segmentation": []
     },
     {
      "type": 2,
      "x": 753,
      "y": 628,
      "width": 44,
      "height": 52,
      "segmentation": []
     },
     {
      "type": 1,
      "x": 615,
      "y": 619,
      "width": 31,
      "height": 22,
      "segmentation": []
     }
    ]
    
    • 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

    4 代码转换(python)

    import os
    import json
    from PIL import Image
    
    
    json_dir = 'D:/train/label_json'  # json文件路径
    out_dir = 'D:/train/label_txt/'  # 输出的 txt 文件路径
    
    
    def get_json(json_file, filename):
        # 读取 json 文件数据
        with open(json_file, 'r') as load_f:
            content = json.load(load_f)
    
        file_path = 'D:/train/image/'+filename+'.jpg' # 每个json文件对应的图片文件路径
        img = Image.open(file_path)
        # imgSize = img.size  # 大小/尺寸
        image_width = img.width  # 图片的宽
        image_height = img.height  # 图片的高
    
        filename_txt = out_dir + filename+'.txt'
    
        # 创建txt文件
        fp = open(filename_txt, mode="w", encoding="utf-8")
        # 将数据写入文件
        #fp.close()
        for t in content:
            if(t['type']<=7):
                # 计算 yolo 数据格式所需要的中心点的 相对 x, y 坐标, w,h 的值
                x = (t['x'] + t['width']/ 2) / image_width #归一化
                y = (t['y']+ t['height']/ 2 )/ image_height #归一化
                w = t['width']/ image_width #归一化
                h = t['height'] / image_height #归一化
                fp = open(filename_txt, mode="r+", encoding="utf-8")
                file_str = str(t['type']-1) + ' ' + str(round(x, 6)) + ' ' + str(round(y, 6)) + ' ' + str(round(w, 6)) + \
                           ' ' + str(round(h, 6))
                line_data = fp.readlines()
    
                if len(line_data) != 0:
                    fp.write('\n' + file_str)
                else:
                    fp.write(file_str)
                fp.close()
    
    def main():
        files = os.listdir(json_dir)  # 得到文件夹下的所有文件名称
        s = []
        for file in files:  # 遍历文件夹
            filename = file.split('.')[0]
            get_json(json_dir+'/'+file, filename)
    
    
    if __name__ == '__main__':
        main()
    
    
    • 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

    5 转换成功后txt文件:

    在这里插入图片描述

    6 转换成功后txt文件内容:

    0 0.727344 0.705093 0.238021 0.226852
    0 0.452865 0.606019 0.040104 0.052778
    0 0.43125 0.602778 0.01875 0.044444
    1 0.403646 0.605556 0.022917 0.048148
    0 0.328385 0.583333 0.016146 0.02037
    
    • 1
    • 2
    • 3
    • 4
    • 5
  • 相关阅读:
    Python3 Selenium4 chromedriver Pycharm闪退的问题
    长短期记忆网络(LSTM)
    独立IP主机怎么样?对网站有什么影响
    整理C++继承、多继承、菱形继承、虚继承
    小马识途谈百科词条创建如何顺利通过审核?
    【专栏】基础篇05| Redis 该怎么保证数据不丢失(下)
    原型制作神器ProtoPie的使用&Unity与网页跨端交互
    Nginx反向代理&负载均衡
    centos下给es7.12.1设置密码
    K Shortest Paths算法之Yen algorithm
  • 原文地址:https://blog.csdn.net/weixin_43412762/article/details/127703621