当前位置:   article > 正文

labelme安装与使用教程(内附一键运行包和转格式代码)

labelme

目录

一、labelme 简介

二、Anaconda 安装

三、Labelme 安装

四、Labelme 简单使用教程

五、json转voc格式

六、VOC转YOLO格式


一、labelme 简介

Labelme是一个开源的图像标注工具,由麻省理工学院的计算机科学和人工智能实验室(CSAIL)开发。它主要用于创建计算机视觉和机器学习应用所需的标记数据集。LabelMe让用户可以在图片上标注对象和区域,为机器学习模型提供训练数据。它支持多种标注类型,如矩形框、多边形和线条等。它是用 Python 编写的,并使用 Qt 作为其图形界面。

二、Anaconda 安装

参考这个教程:http://t.csdnimg.cn/zeXIw(内附超级详细教程,请仔细观看!)

三、Labelme 安装

一键运行包:Labelme v5.3.1(点击下载免费资源即可使用!)

四、Labelme 简单使用教程

首先双击打开Labelme软件。

Labelme的操作界面如下:

Labelme快捷键如下:

A切换到上一张图片
D切换到下一张图片
Ctrl+E选中标注框或标签时按下可打开编辑窗口
ctrl+R创建两点矩形框
Ctrl+鼠标滚轮放大/缩小当前图片
Ctrl+F还原尺寸
Ctrl+J切换到编辑模式
Ctrl+S保存文件

生成好的文件如下示例:

五、json转voc格式

首先将json和图片分开成两个文件夹。

然后复制下方这份代码到编辑器,修改最后三行代码的路径,然后运行。

(运行可能会报错,只需要安装好对应的依赖就好)

  1. import cv2
  2. import json
  3. import os
  4. import os.path as osp
  5. import shutil
  6. import chardet
  7. def get_encoding(path):
  8. f = open(path, 'rb')
  9. data = f.read()
  10. file_encoding = chardet.detect(data).get('encoding')
  11. f.close()
  12. return file_encoding
  13. def is_pic(img_name):
  14. valid_suffix = ['JPEG', 'jpeg', 'JPG', 'jpg', 'BMP', 'bmp', 'PNG', 'png']
  15. suffix = img_name.split('.')[-1]
  16. if suffix not in valid_suffix:
  17. return False
  18. return True
  19. class X2VOC(object):
  20. def __init__(self):
  21. pass
  22. def convert(self, image_dir, json_dir, dataset_save_dir):
  23. """转换。
  24. Args:
  25. image_dir (str): 图像文件存放的路径。
  26. json_dir (str): 与每张图像对应的json文件的存放路径。
  27. dataset_save_dir (str): 转换后数据集存放路径。
  28. """
  29. assert osp.exists(image_dir), "The image folder does not exist!"
  30. assert osp.exists(json_dir), "The json folder does not exist!"
  31. if not osp.exists(dataset_save_dir):
  32. os.makedirs(dataset_save_dir)
  33. # Convert the image files.
  34. new_image_dir = osp.join(dataset_save_dir, "JPEGImages")
  35. if osp.exists(new_image_dir):
  36. raise Exception(
  37. "The directory {} is already exist, please remove the directory first".
  38. format(new_image_dir))
  39. os.makedirs(new_image_dir)
  40. for img_name in os.listdir(image_dir):
  41. if is_pic(img_name):
  42. shutil.copyfile(
  43. osp.join(image_dir, img_name),
  44. osp.join(new_image_dir, img_name))
  45. # Convert the json files.
  46. xml_dir = osp.join(dataset_save_dir, "Annotations")
  47. if osp.exists(xml_dir):
  48. raise Exception(
  49. "The directory {} is already exist, please remove the directory first".
  50. format(xml_dir))
  51. os.makedirs(xml_dir)
  52. self.json2xml(new_image_dir, json_dir, xml_dir)
  53. class LabelMe2VOC(X2VOC):
  54. """将使用LabelMe标注的数据集转换为VOC数据集。
  55. """
  56. def json2xml(self, image_dir, json_dir, xml_dir):
  57. import xml.dom.minidom as minidom
  58. i = 0
  59. for img_name in os.listdir(image_dir):
  60. img_name_part = osp.splitext(img_name)[0]
  61. json_file = osp.join(json_dir, img_name_part + ".json")
  62. i += 1
  63. if not osp.exists(json_file):
  64. os.remove(osp.join(image_dir, img_name))
  65. continue
  66. xml_doc = minidom.Document()
  67. root = xml_doc.createElement("annotation")
  68. xml_doc.appendChild(root)
  69. node_folder = xml_doc.createElement("folder")
  70. node_folder.appendChild(xml_doc.createTextNode("JPEGImages"))
  71. root.appendChild(node_folder)
  72. node_filename = xml_doc.createElement("filename")
  73. node_filename.appendChild(xml_doc.createTextNode(img_name))
  74. root.appendChild(node_filename)
  75. with open(json_file, mode="r", \
  76. encoding=get_encoding(json_file)) as j:
  77. json_info = json.load(j)
  78. if 'imageHeight' in json_info and 'imageWidth' in json_info:
  79. h = json_info["imageHeight"]
  80. w = json_info["imageWidth"]
  81. else:
  82. img_file = osp.join(image_dir, img_name)
  83. im_data = cv2.imread(img_file)
  84. h, w, c = im_data.shape
  85. node_size = xml_doc.createElement("size")
  86. node_width = xml_doc.createElement("width")
  87. node_width.appendChild(xml_doc.createTextNode(str(w)))
  88. node_size.appendChild(node_width)
  89. node_height = xml_doc.createElement("height")
  90. node_height.appendChild(xml_doc.createTextNode(str(h)))
  91. node_size.appendChild(node_height)
  92. node_depth = xml_doc.createElement("depth")
  93. node_depth.appendChild(xml_doc.createTextNode(str(3)))
  94. node_size.appendChild(node_depth)
  95. root.appendChild(node_size)
  96. for shape in json_info["shapes"]:
  97. if 'shape_type' in shape:
  98. if shape["shape_type"] != "rectangle":
  99. continue
  100. (xmin, ymin), (xmax, ymax) = shape["points"]
  101. xmin, xmax = sorted([xmin, xmax])
  102. ymin, ymax = sorted([ymin, ymax])
  103. else:
  104. points = shape["points"]
  105. points_num = len(points)
  106. x = [points[i][0] for i in range(points_num)]
  107. y = [points[i][1] for i in range(points_num)]
  108. xmin = min(x)
  109. xmax = max(x)
  110. ymin = min(y)
  111. ymax = max(y)
  112. label = shape["label"]
  113. node_obj = xml_doc.createElement("object")
  114. node_name = xml_doc.createElement("name")
  115. node_name.appendChild(xml_doc.createTextNode(label))
  116. node_obj.appendChild(node_name)
  117. node_diff = xml_doc.createElement("difficult")
  118. node_diff.appendChild(xml_doc.createTextNode(str(0)))
  119. node_obj.appendChild(node_diff)
  120. node_box = xml_doc.createElement("bndbox")
  121. node_xmin = xml_doc.createElement("xmin")
  122. node_xmin.appendChild(xml_doc.createTextNode(str(xmin)))
  123. node_box.appendChild(node_xmin)
  124. node_ymin = xml_doc.createElement("ymin")
  125. node_ymin.appendChild(xml_doc.createTextNode(str(ymin)))
  126. node_box.appendChild(node_ymin)
  127. node_xmax = xml_doc.createElement("xmax")
  128. node_xmax.appendChild(xml_doc.createTextNode(str(xmax)))
  129. node_box.appendChild(node_xmax)
  130. node_ymax = xml_doc.createElement("ymax")
  131. node_ymax.appendChild(xml_doc.createTextNode(str(ymax)))
  132. node_box.appendChild(node_ymax)
  133. node_obj.appendChild(node_box)
  134. root.appendChild(node_obj)
  135. with open(osp.join(xml_dir, img_name_part + ".xml"), 'w') as fxml:
  136. xml_doc.writexml(
  137. fxml,
  138. indent='\t',
  139. addindent='\t',
  140. newl='\n',
  141. encoding="utf-8")
  142. def convert(pics,anns,save_dir):
  143. """
  144. 将使用labelme标注的数据转换为VOC格式
  145. 请将labelme标注的文件中,所有img文件保存到pics文件夹中,所有xml文件保存到anns文件夹中,结构如下:
  146. --labelmedata
  147. ---pics
  148. ----img0.jpg
  149. ----img1.jpg
  150. ----......
  151. ---anns
  152. ----img0.mxl
  153. ----img1.xml
  154. ----......
  155. :param pics: img文件所在文件夹的路径
  156. :param anns: xml文件所在文件夹的路径
  157. :param save_dir: 输出VOC格式数据的保存路径
  158. :return:
  159. """
  160. labelme2voc = LabelMe2VOC().convert
  161. labelme2voc(pics, anns, save_dir)
  162. if __name__=="__main__":
  163. convert(pics=r"JPEGImages", # 修改图片路径
  164. anns=r"json", # 修改json格式文件路径
  165. save_dir=r"VOC") # 保存VOC格式的路径

六、VOC转YOLO格式

如果想要VOC转YOLO格式,用于YOLO代码训练当中的,可以参考下方这份代码。只需修改最底下的路径就可以直接运行。

  1. import xml.etree.ElementTree as ET
  2. import pickle
  3. import os
  4. from os import listdir, getcwd
  5. from os.path import join
  6. def convert(size, box):
  7. x_center = (box[0] + box[1]) / 2.0
  8. y_center = (box[2] + box[3]) / 2.0
  9. x = x_center / size[0]
  10. y = y_center / size[1]
  11. w = (box[1] - box[0]) / size[0]
  12. h = (box[3] - box[2]) / size[1]
  13. return (x, y, w, h)
  14. def convert_annotation(xml_files_path, save_txt_files_path, classes):
  15. xml_files = os.listdir(xml_files_path)
  16. print(xml_files)
  17. for xml_name in xml_files:
  18. print(xml_name)
  19. xml_file = os.path.join(xml_files_path, xml_name)
  20. out_txt_path = os.path.join(save_txt_files_path, xml_name.split('.')[0] + '.txt')
  21. out_txt_f = open(out_txt_path, 'w')
  22. tree = ET.parse(xml_file)
  23. root = tree.getroot()
  24. size = root.find('size')
  25. w = int(size.find('width').text)
  26. h = int(size.find('height').text)
  27. for obj in root.iter('object'):
  28. difficult = obj.find('difficult').text
  29. cls = obj.find('name').text
  30. if cls not in classes or int(difficult) == 1:
  31. continue
  32. cls_id = classes.index(cls)
  33. xmlbox = obj.find('bndbox')
  34. b = (float(xmlbox.find('xmin').text), float(xmlbox.find('xmax').text), float(xmlbox.find('ymin').text),
  35. float(xmlbox.find('ymax').text))
  36. # b=(xmin, xmax, ymin, ymax)
  37. print(w, h, b)
  38. bb = convert((w, h), b)
  39. out_txt_f.write(str(cls_id) + " " + " ".join([str(a) for a in bb]) + '\n')
  40. if __name__ == "__main__":
  41. # 需要转换的类别,需要一一对应
  42. classes1 = ['boat', 'cat']
  43. # 2、voc格式的xml标签文件路径
  44. xml_files1 = r'C:\Users\86159\Desktop\VOC2007\Annotations'
  45. # 3、转化为yolo格式的txt标签文件存储路径
  46. save_txt_files1 = r'C:\Users\86159\Desktop\VOC2007\label'
  47. convert_annotation(xml_files1, save_txt_files1, classes1)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/304368
推荐阅读
  

闽ICP备14008679号