Yolo_mark icon indicating copy to clipboard operation
Yolo_mark copied to clipboard

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

Open spencerkraisler opened this issue 5 years ago • 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.

spencerkraisler avatar May 18 '19 22:05 spencerkraisler

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

AlexeyAB avatar May 18 '19 22:05 AlexeyAB

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;

spencerkraisler avatar May 18 '19 23:05 spencerkraisler