Win10 Labelme标注数据转为YOLOV5 训练的数据集

举报
AI浩 发表于 2021/12/23 01:44:04 2021/12/23
【摘要】 将Labelme标注的数据复制到工程的根目录,并将其命名为LabelmeData。我的工程根目录是yolov5-master,如下图:   打开工程,在根目录新建LabelmeToYolov5.py。写入下面的代码 import osimport numpy as npimport jsonfrom glob import ...
  • 将Labelme标注的数据复制到工程的根目录,并将其命名为LabelmeData。我的工程根目录是yolov5-master,如下图:

 

  • 打开工程,在根目录新建LabelmeToYolov5.py。写入下面的代码

  
  1. import os
  2. import numpy as np
  3. import json
  4. from glob import glob
  5. import cv2
  6. from sklearn.model_selection import train_test_split
  7. from os import getcwd
  8. classes = ["aircraft", "oiltank"]
  9. # 1.标签路径
  10. labelme_path = "LabelmeData/"
  11. isUseTest = True # 是否创建test集
  12. # 3.获取待处理文件
  13. files = glob(labelme_path + "*.json")
  14. files = [i.replace("\\", "/").split("/")[-1].split(".json")[0] for i in files]
  15. print(files)
  16. if isUseTest:
  17. trainval_files, test_files = train_test_split(files, test_size=0.1, random_state=55)
  18. else:
  19. trainval_files = files
  20. # split
  21. train_files, val_files = train_test_split(trainval_files, test_size=0.1, random_state=55)
  22. def convert(size, box):
  23. dw = 1. / (size[0])
  24. dh = 1. / (size[1])
  25. x = (box[0] + box[1]) / 2.0 - 1
  26. y = (box[2] + box[3]) / 2.0 - 1
  27. w = box[1] - box[0]
  28. h = box[3] - box[2]
  29. x = x * dw
  30. w = w * dw
  31. y = y * dh
  32. h = h * dh
  33. return (x, y, w, h)
  34. wd = getcwd()
  35. print(wd)
  36. def ChangeToYolo5(files, txt_Name):
  37. if not os.path.exists('tmp/'):
  38. os.makedirs('tmp/')
  39. list_file = open('tmp/%s.txt' % (txt_Name), 'w')
  40. for json_file_ in files:
  41. json_filename = labelme_path + json_file_ + ".json"
  42. imagePath = labelme_path + json_file_ + ".jpg"
  43. list_file.write('%s/%s\n' % (wd, imagePath))
  44. out_file = open('%s/%s.txt' % (labelme_path, json_file_), 'w')
  45. json_file = json.load(open(json_filename, "r", encoding="utf-8"))
  46. height, width, channels = cv2.imread(labelme_path + json_file_ + ".jpg").shape
  47. for multi in json_file["shapes"]:
  48. points = np.array(multi["points"])
  49. xmin = min(points[:, 0]) if min(points[:, 0]) > 0 else 0
  50. xmax = max(points[:, 0]) if max(points[:, 0]) > 0 else 0
  51. ymin = min(points[:, 1]) if min(points[:, 1]) > 0 else 0
  52. ymax = max(points[:, 1]) if max(points[:, 1]) > 0 else 0
  53. label = multi["label"]
  54. if xmax <= xmin:
  55. pass
  56. elif ymax <= ymin:
  57. pass
  58. else:
  59. cls_id = classes.index(label)
  60. b = (float(xmin), float(xmax), float(ymin), float(ymax))
  61. bb = convert((width, height), b)
  62. out_file.write(str(cls_id) + " " + " ".join([str(a) for a in bb]) + '\n')
  63. print(json_filename, xmin, ymin, xmax, ymax, cls_id)
  64. ChangeToYolo5(train_files, "train")
  65. ChangeToYolo5(val_files, "val")
  66. ChangeToYolo5(test_files, "test")
  67. '''
  68. file1 = open("tmp/train.txt", "r")
  69. file2 = open("tmp/val.txt", "r")
  70. file_list1 = file1.readlines() # 将所有变量读入列表file_list1
  71. file_list2 = file2.readlines() # 将所有变量读入列表file_list2
  72. file3 = open("tmp/trainval.txt", "w")
  73. for line in file_list1:
  74. print(line)
  75. file3.write(line)
  76. for line in file_list2:
  77. print(line)
  78. file3.write(line)
  79. '''

这段代码执行完成会在LabelmeData生成每个图片的txt标注数据,同时在tmp文件夹下面生成训练集、验证集和测试集的txt,txt记录的是图片的路径,为下一步生成YoloV5训练和测试用的数据集做准备。

  • 在tmp文件夹新建makedata.py。执行完成后会在工程的根目录生成VOC数据集。

  
  1. import shutil
  2. import os
  3. file_List = ["train", "val", "test"]
  4. for file in file_List:
  5. if not os.path.exists('../VOC/images/%s' % file):
  6. os.makedirs('../VOC/images/%s' % file)
  7. if not os.path.exists('../VOC/labels/%s' % file):
  8. os.makedirs('../VOC/labels/%s' % file)
  9. print(os.path.exists('../tmp/%s.txt' % file))
  10. f = open('../tmp/%s.txt' % file, 'r')
  11. lines = f.readlines()
  12. for line in lines:
  13. print(line)
  14. line = "/".join(line.split('/')[-5:]).strip()
  15. shutil.copy(line, "../VOC/images/%s" % file)
  16. line = line.replace('jpg', 'txt')
  17. shutil.copy(line, "../VOC/labels/%s/" % file)

运行结果如下:

文章来源: wanghao.blog.csdn.net,作者:AI浩,版权归原作者所有,如需转载,请联系作者。

原文链接:wanghao.blog.csdn.net/article/details/108865894

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。