Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

no CSV export #39

Closed
ajaysurya1221 opened this issue Nov 20, 2020 · 5 comments
Closed

no CSV export #39

ajaysurya1221 opened this issue Nov 20, 2020 · 5 comments

Comments

@ajaysurya1221
Copy link

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

@developer0hye
Copy link
Owner

@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.

@ajaysurya1221
Copy link
Author

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

@developer0hye
Copy link
Owner

No, it is class center_x center_y width height.

@ajaysurya1221
Copy link
Author

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

@developer0hye
Copy link
Owner

developer0hye commented Nov 22, 2020

It's okay~

x y w h

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants