Yolo_mark icon indicating copy to clipboard operation
Yolo_mark copied to clipboard

save images with annotation

Open iMas00d opened this issue 4 years ago • 2 comments

Hi Is there anyway that i can store annotated images as well like when i draw the box on an image i am able to save that image as well along with text file its urgent if anybody can help me i will be very thankful

iMas00d avatar Mar 11 '20 06:03 iMas00d

Which tool you use? Try to use labelimg tool so that you can save image files and text files any where you want.

nathnim avatar Apr 21 '20 13:04 nathnim

It is maybe a late comment, but just wanted to share it is possible by adding the following line of code after line 913 imshow(window_name, frame);, as an example:

imwrite(ouput_dir_path + std::to_string(trackbar_value) + '.jpg', frame);

Run yolo mark and go through the frame and images with annotations are saved in the specified file path.

takehiro-code avatar Jan 09 '22 22:01 takehiro-code