Skip to content

T1sweet/YOLO_to_Labelme_use

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 

Repository files navigation

关键点自动标注步骤 👋👋👋

如果对你的工作有所帮助,记得点上Star✨✨✨

1.YOLO-V8安装:

2.用YOLO-V8进行关键点检测,将检测到的关键点保存到YOLO格式txt文件:

  • 下载yolov8的模型yolov8x-pose-p6.pt
  • yolo pose predict model= yolov8x-pose-p6.pt source=images device=0 save_txt=True save=False image

3.在YOLO_to_Labelme_use.py脚本中,修改读入YOLO格式txt文件路径、输出Labelme格式JSON格式文件路径,并运行该脚本:

  • yolo_txt_path = 'E:\dataset\set01\runs\pose\predict2\labels\' # yolo格式txt文件路径
  • labelme_json_path = 'E:\dataset\set01\runs\pose\predict2\json\' # labelme格式json文件路径 image

4.将labelme格式的json文件和对应的图片文件导入标注工具labelme,对关键点进行人工矫正:

补充:YOLO-V8资料