Deep learning based object detection using YOLOv3 with OpenCV
- R-CNN (Selective Search), Fast R-CNN( Region proposed Network and R-CNN).
- Single shot detectors (SSD).
- YOLO.
Both SSD and YOLO use one-stage detector strategy.
- OpenCV 3.4.2 and above.
- Models.sh (contains link to model files).
- yolo.py (python code for yolo).
- yolo.cpp (c++ code for yolo).
- lady.jpeg (input image file).
- video.mp4
For python:-
python3 yolo.py 'path to image' .
python3 yolo_video.py --video 'path to video'
For C++
g++ yolo.cpp
pkg-config --cflags --libs opencv
- 0.7514 seconds