AlexeyAB / darknet

YOLOv4 / Scaled-YOLOv4 / YOLO - Neural Networks for Object Detection (Windows and Linux version of Darknet )
http://pjreddie.com/darknet/
Other
21.7k stars 7.96k forks source link

Pointers for person detection script #231

Open christian-ek opened 7 years ago

christian-ek commented 7 years ago

Hi! Thank you for the work you put down into this.

I am using this to run object identification on the videos that my surveillance cameras are recording and if a person is detected i get a notification on my phone. I just wanted to contact you and ask if I am running in an optimized way for only finding persons in recording?

There are many options that you describe in your readme which makes me wonder what way is best if i only am interested in finding persons in the video. VOC, YOLO9000 or COCO model? should i use tiny YOLO?

Today i run like this in my python script:

["./darknet", "detector", "demo", "cfg/coco.data", "cfg/yolo.cfg", "yolo.weights", filepath, "-i", "0", "-out_filename", "result.avi"]

Thank you for your time.

AlexeyAB commented 6 years ago

Hi,