I was working on this project here, and to detect pictures I have to run:
cd darknet
make
then the triggering command line:
./darknet detect cfg/yolov3.cfg yolov3.weights data/dog.jpg
So, my question is, How can I make it run automatically once I throw a picture inside the data folder? So, what I want is, whenever my Motion camera detector detects a motion, it will save it in the darknet/data then the command line will do the analysis or detection (image recognition) and saves it in some other folder!
How possible is that?!