AlexeyAB/Yolo_mark

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

Opened this issue · 2 comments

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.

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

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;