All Projects → apoorvavinod → Real_time_object_detection_and_tracking

apoorvavinod / Real_time_object_detection_and_tracking

YOLOv2 and MobileNet_SSD detection algorithms used along with KCF object tracker

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Real time object detection and tracking

Pine
🌲 Aimbot powered by real-time object detection with neural networks, GPU accelerated with Nvidia. Optimized for use with CS:GO.
Stars: ✭ 202 (-16.18%)
Mutual labels:  object-detection, opencv, detection
Vehicle counting tensorflow
🚘 "MORE THAN VEHICLE COUNTING!" This project provides prediction for speed, color and size of the vehicles with TensorFlow Object Counting API.
Stars: ✭ 582 (+141.49%)
Mutual labels:  object-detection, opencv, detection
Dockerface
Face detection using deep learning.
Stars: ✭ 173 (-28.22%)
Mutual labels:  object-detection, detection
Vision3d
Research platform for 3D object detection in PyTorch.
Stars: ✭ 177 (-26.56%)
Mutual labels:  object-detection, detection
Bmw Yolov4 Inference Api Cpu
This is a repository for an nocode object detection inference API using the Yolov4 and Yolov3 Opencv.
Stars: ✭ 180 (-25.31%)
Mutual labels:  object-detection, opencv
Face mask detection
Face mask detection system using Deep learning.
Stars: ✭ 168 (-30.29%)
Mutual labels:  object-detection, opencv
Object Detection
Object detection with ssd_mobilenet and tiny-yolo (Add: YOLOv3, tflite)
Stars: ✭ 173 (-28.22%)
Mutual labels:  object-detection, detection
Vdetlib
Video detection library
Stars: ✭ 177 (-26.56%)
Mutual labels:  object-detection, detection
Blurdetection2
Blur Detection with OpenCV in Python
Stars: ✭ 156 (-35.27%)
Mutual labels:  opencv, detection
Marvel
Marvel - Face Recognition With Android & OpenCV
Stars: ✭ 199 (-17.43%)
Mutual labels:  object-detection, opencv
Raspberrypi Facedetection Mtcnn Caffe With Motion
MTCNN with Motion Detection, on Raspberry Pi with Love
Stars: ✭ 204 (-15.35%)
Mutual labels:  opencv, detection
A Pytorch Tutorial To Object Detection
SSD: Single Shot MultiBox Detector | a PyTorch Tutorial to Object Detection
Stars: ✭ 2,398 (+895.02%)
Mutual labels:  object-detection, detection
Map
mean Average Precision - This code evaluates the performance of your neural net for object recognition.
Stars: ✭ 2,324 (+864.32%)
Mutual labels:  object-detection, detection
Tf deformable net
Deformable convolution net on Tensorflow
Stars: ✭ 173 (-28.22%)
Mutual labels:  object-detection, detection
Opencv Lane Vehicle Track
OpenCV implementation of lane and vehicle tracking
Stars: ✭ 162 (-32.78%)
Mutual labels:  opencv, detection
Vip
Video Platform for Action Recognition and Object Detection in Pytorch
Stars: ✭ 175 (-27.39%)
Mutual labels:  object-detection, detection
Com.unity.perception
Perception toolkit for sim2real training and validation
Stars: ✭ 208 (-13.69%)
Mutual labels:  object-detection, detection
Synthdet
SynthDet - An end-to-end object detection pipeline using synthetic data
Stars: ✭ 148 (-38.59%)
Mutual labels:  object-detection, detection
Derpn
A novel region proposal network for more general object detection ( including scene text detection ).
Stars: ✭ 155 (-35.68%)
Mutual labels:  object-detection, detection
Person Detection And Tracking
A tensorflow implementation with SSD model for person detection and Kalman Filtering combined for tracking
Stars: ✭ 193 (-19.92%)
Mutual labels:  object-detection, opencv

Real-time Object Tracking and Detection for Video-streams

Pre-req:

  1. OpenCV 3.4
  2. imutils

Download weights here and place them in model_data/

Arguments:

$python3 src/main.py -h
usage: main.py [-h] [--input INPUT] [--output OUTPUT] --model MODEL
               [--config CONFIG] [--classes CLASSES] [--thr THR]

Object Detection and Tracking on Video Streams

optional arguments:
  -h, --help         show this help message and exit
  --input INPUT      Path to input image or video file. Skip this argument to
                     capture frames from a camera.
  --output OUTPUT    Path to save output as video file. Skip this argument if
  					 you don't want the output to be saved. 
  --model MODEL      Path to a binary file of model that contains trained weights.
                     It could be a file with extensions .caffemodel (Caffe) or
                     .weights (Darknet)
  --config CONFIG    Path to a text file of model that contains network
                     configuration. It could be a file with extensions
                     .prototxt (Caffe) or .cfg (Darknet)
  --classes CLASSES  Optional path to a text file with names of classes to
                     label detected objects.
  --thr THR          Confidence threshold for detection. Default: 0.35

Execute code from root directory. Example:

python3 src/main.py --model model_data/yolov2.weights --config model_data/yolov2.cfg --classes model_data/coco_classes.txt --input media/sample_video.mp4 --output out/sample_output.avi

or

python3 src/main.py --model model_data/MobileNetSSD_deploy.caffemodel --config model_data/MobileNetSSD_deploy.prototxt --classes model_data/MobileNet_classes.txt --input media/sample_video.mp4 --output out/sample_output.avi

Note: --input can be ommitted, which will activate stream from webcam. New objects are detected when all current objects being tracked are lost, or when 'q' is pressed

MobileNet_SSD with KCF tracker

MobileNet_SSD with KCF tracker

YOLOv2 with KCF tracker

YOLOv2 with KCF tracker

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].