AlexeyAB / Yolo_mark

GUI for marking bounded boxes of objects in images for training neural network Yolo v3 and v2

Home Page:https://github.com/AlexeyAB/darknet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

save images with annotation

iMas00d opened this issue · 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

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

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.