deshwalmahesh / yolov7-deepsort-tracking

Modular and ready to deploy code to detect and track videos using YOLO-v7 and DeepSORT

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Welcome!

This repo uses official implementations (with modifications) of YOLOv7: Trainable bag-of-freebies sets new state-of-the-art for real-time object detectors and Simple Online and Realtime Tracking with a Deep Association Metric (Deep SORT) to detect objects from images, videos and then track objects in Videos (tracking in images does not make sense)

I have refactored the code, removed dependencies, removed extra code so that you can use ANY detector model with DeepSORT. Please look at the Demo.ipynb notebook on how to use the code.

yolov7_gif

Steps:

To use in Colab: Open Colab Demo.ipynb

For use in local system, please follow the below steps

  1. Clone the repo as git clone https://github.com/deshwalmahesh/yolov7-deepsort-tracking/
  2. Download the weights of any of the pre trained YOLOv7 models from the links: yolov7.pt yolov7x.pt yolov7-w6.pt yolov7-e6.pt yolov7-d6.pt yolov7-e6e.pt
  3. NOTE: Every model has it's own parameters like image_size and all so you have to use the appropriate parameters. This repo was tested successfully with yolov7x.pt
  4. Go to Demo.ipynb and run the code.

Troubleshooting

This code works perfectly with python== 3.7, tensorflow==2.8.0, torch== 1.8.0, sklearn==0.24.2 on local Ubuntu: CPU as well as Colab: CPU + GPU as of 13/07/2022.

One of the most frequent problem is with the PATH such as model weights, input, output etc so pass in the path of the weights carefully. Do not just run all all the cells given in the notebook. this code works perfectly as long as you pass the correct path.

If you find yourself in trouble, please raise an issue.

References

  1. YOLOv7: Trainable bag-of-freebies sets new state-of-the-art for real-time object detectors
  2. Simple Online and Realtime Tracking with a Deep Association Metric (Deep SORT)
  3. Tensorflow-v1 error code help

Help, Issues and Future work

Any issues, help, bug, feature requestd andd suggestions are very much welcomed. Please feel free to open up the issues. I'll be putting the quantized Onnx deployable version here along with Docker image in some time. If you have the time and expertise, please free to open up a merge request.

About

Modular and ready to deploy code to detect and track videos using YOLO-v7 and DeepSORT


Languages

Language:Jupyter Notebook 99.1%Language:Python 0.9%Language:Shell 0.0%Language:Dockerfile 0.0%