labelme2yolo
Labelme2YOLO
YOLO를 학습하기 위해서 라벨링은 아래의 형태를 갖추고 있어야 한다. 2 0.099252 0.561545 0.033488 0.168367 라벨의 이름(번호), center_x, center_y, width, height 로 이루어진 txt파일로 저장되야한다. Labelme를 이용하여 Box annotation을 했을 경우, "shapes": [{ "label": "1", "line_color": null, "fill_color": null, "points": [[447, 287], [381, 267]], "shape_type": "rectangle" }] (min_x, min_y), (max_x, max_y) 의 값으로 라벨링이 되어 json파일로 저장이 된다. 따라서 Labelme json 파일을 Y..