AlexeyAB / Yolo_mark

GUI for marking bounded boxes of objects in images for training neural network Yolo v3 and v2
https://github.com/AlexeyAB/darknet
The Unlicense
1.8k stars 680 forks source link

Is there a way to have Yolo_mark create the .txt file of predictions to a separate folder? #134

Open spencerkraisler opened 5 years ago

spencerkraisler commented 5 years ago

I was hoping there's a way to alter Yolo_mark such that it uploads the text files of predictions to a separate folder rather than the same folder the images are in.

AlexeyAB commented 5 years ago

Currently it can't.

You just can copy all txt files from folder with images by using OS command

spencerkraisler commented 5 years ago

Currently it can't.

You just can copy all txt files from folder with images by using OS command

  • Windows copy *.txt c:\mydir
  • Linux cp *.txt /home/labels

It's all good. I changed line 521 in main.cpp to std::string const txt_filename_path = insert desired folder path here + "/" + txt_filename;