developer0hye/Yolo_Label

no CSV export

ajaysurya1221 opened this issue · 5 comments

TrainYourOwnYOLO requires CSV file as data. Is there any way we can do that with Yolo_Label?

@ajaysurya1221

Annotate your data with Yolo_Label and then change the '.txt' ext of annotation file to '.csv'

I also recommend you to use another yolo projects that support '.txt' files.

Hi may I please know the order of the bounding box data in .txt file ?
is it xmin ymin xmax ymax?

No, it is class center_x center_y width height.

Thanks a lot. Is there any formula or pseudocode to convert these values into xmin ymin xmax and ymax ?

It's okay~

x y w h

xmin = x - w / 2
ymin = y - h / 2
xmax = x + w / 2
ymax = y + h / 2