With the help of this project we will detect multiple objects at the same time in the video or through webcam.
-
Latest version of python
-
OpenCV
-
Yolov4
i) Yolov4.cfg
ii) Yolov4.weights
iii) coco.txt
-
Code Editor (Vscode or whatever you like )
-
Object_detection file :- This contains the code that is necessary to run the yolo. And we will import this file in our another files so that we don't have to write the whole code again.
-
Tracking_all file :- This file is able to produce a boundary upon all the detected objects and it will also label them according o their class(object) name. Yolo can detect upto 80 classes and the names of that classes is given in the coco.txt file.
-
Webcam_detection file :- This file is able to open the camera and take that as a input perform object detection on that.
-
Custom_object_detector_that_counts_no_of_Cars :- This file contains the code which is able to count the number of cars in a video.