hello AlexeyAB I want to predict multiple images.
First I make train.txt file in data folder
This is my train.txt file. Directory of train.txt is /home/jinsoo/darknet/basic/data
and directory of images is /home/jinsoo/darknet/basic/data
And I insert terminal like this
'./darknet detector test cfg/coco.data cfg/yolov3.cfg yolov3.weights < data/train.txt > result.txt'
If I insert './darknet detector test cfg/coco.data cfg/yolov3.cfg yolov3.weights < data/train.txt > result.txt'
All images in /home/jinsoo/darknet/basic/data is detected and result of detection is saved in result.txt.
this is my data folder and result is like this
Results of detection are saved as result.txt files for the entire images of the data folder. Can I save result.txt for the each image of the data folder?
I want to save result.txt for dog.jpg, giraffe.jpg, horses.jpg, eagles.jpg, person.jpg, scream.jpg. I mean If I detect 6 images together I want to save result for each images and create 6 result.txt file. Can I do this?
hello AlexeyAB I want to predict multiple images. First I make train.txt file in data folder This is my train.txt file. Directory of train.txt is /home/jinsoo/darknet/basic/data and directory of images is /home/jinsoo/darknet/basic/data And I insert terminal like this './darknet detector test cfg/coco.data cfg/yolov3.cfg yolov3.weights < data/train.txt > result.txt'
If I insert './darknet detector test cfg/coco.data cfg/yolov3.cfg yolov3.weights < data/train.txt > result.txt' All images in /home/jinsoo/darknet/basic/data is detected and result of detection is saved in result.txt. this is my data folder and result is like this
Results of detection are saved as result.txt files for the entire images of the data folder. Can I save result.txt for the each image of the data folder? I want to save result.txt for dog.jpg, giraffe.jpg, horses.jpg, eagles.jpg, person.jpg, scream.jpg. I mean If I detect 6 images together I want to save result for each images and create 6 result.txt file. Can I do this?