This is a simple object deetection program written in python which detect common objects in an image.
Libraries used : cv2
numpy
cvlib
PIL
matplotlib
YOLOv3
model is used for this program to detect objects.
YOLO
is a Real-time object detection model which is extremely fast and accurate
Documentation of YOLO: https://pjreddie.com/darknet/yolo/
Install required libraries
pip install -r requirements.txt
Run the cells respectively one after another
python objectdetection.py
This program is written to read a one image at a time, if you need to play with different images, you are required to pass it to the program.
More on Objetc-Detection with OpenCV can found in below links
https://www.pyimagesearch.com/2018/11/12/yolo-object-detection-with-opencv/