Before Asking
Search before asking
Question
I tried to train the segmentation algorithm for the YOLOv6_seg branch (https://github.com/meituan/YOLOv6/tree/yolov6-seg) and found that it uses YOLO format to segment annotated data, which is different from the Ultralytics project
The segmentation data annotation format for Ultralytics Engineering is
[cls_id, x1, y1, x2, y2, ...]
I observed the YOLOv6 project code and found that the format of the loaded annotation file is (yolov6/data/seg_dataset.py check_label_files / get_segment)
[cls_id, x_c, y_c, box_w, box_h, x1, y1, x2, y2, ...]
I tried to search the document, but it only provided the annotation format for the detection algorithm:https://github.com/meituan/YOLOv6/blob/yolov6-seg/docs/Train_custom_data.md
Additional
No response