Giter Site home page Giter Site logo

hhanoo / classy-sort-yolov5 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from tensorturtle/classy-sort-yolov5

0.0 0.0 0.0 203.05 MB

Ready-to-use realtime multi-object tracker that works for any object category. YOLOv5 + SORT implementation.

License: GNU General Public License v3.0

Shell 0.25% Python 98.38% Jupyter Notebook 0.23% Dockerfile 1.14%

classy-sort-yolov5's Introduction

โ„‚๐•๐•’๐•ค๐•ค๐•ช๐•Š๐•†โ„๐•‹

by Jason Sohn (website: jasonsohn.com)

ClassySORT is a simple real-time multi-object tracker (MOT) that works for any kind of object class (not just people).

demo-footage

Introduction

ClassySORT is designed to be a state-of-the-art (SOTA) multi-object tracker (MOT) for use on your own projects. And bcause the You-only-look-once algorithm (YOLO) detector is pretrained on COCO dataset, ClassySORT can detect and count and track 80 different kinds of common objects 'out of the box'.

Tested on Pop_OS! 20.04 (similar to Ubuntu) and NVIDIA RTX 2070s.

Modifying it is exactly the same process as training YOLOv5 with your own dataset. How do I do that?

ClassySORT implements

This repository uses a fixed version of YOLOv5 to ensure compatbility. Replacing the YOLOv5 code to the updated ultralytics/YOLOv5 code may result in breaking changes. If you are able to this without issues, please submit a pull request.

If you only need to track people, or have the resources to train a model from scratch with your own dataset, see 'More Complex MOTs' section below.

Using ClassySORT

Clone this repository

git clone https://github.com/tensorturtle/classy-sort-yolov5.git
cd classy-sort-yolov5

Install Requirements

Python 3.8 or later with all requirements.txt. To install run:

pip install -r requirements.txt

Download YOLOv5 weights

./download_weights.sh

This script will save yolov5 weights to yolov5/weights/ directory.

Run Tracking

To run the tracker on your own video and view the tracked bounding boxes, run:

python classy_track.py --source /path/to/video.mp4 --view-img

To get a summary of arguments run:

python classy_track.py -h

The text results are saved to /inference/output/ from the array above in the following format. That location in the script is also a good point to plug your own programs into.

The saved text file contains the following information:

[frame_index, x_left_top, y_left_top, x_right_bottom, y_right_bottom, object_category, u_dot, v_dot, s_dot, object_id]

where

  • u_dot: time derivative of x_center in pixels
  • v_dot: time derivative of y_center in pixels
  • s_dot: time derivative of scale (area of bbox) in pixels

Implementation Details

Modifications to SORT

1. Class-aware Tracking

The original implementation of SORT threw away YOLO's object class information (0: person, 1: bike, etc.). I wanted to keep that information, so I added a detclass attribute to KalmanBoxTracker object in sort.py:

modifications_to_sort_schematic

2. Kalman Filter parameters

I found that for my own dataset in which bounding boxes change size fairly quickly, the default Q value (process covariance) was too low. I recommend you try experimenting with them.

More Complex MOTs

If you only need to track people, or have the resources to train a model from scratch with your own dataset, then I recommend bostom/Yolov5_DeepSort_PyTorch. DeepSORT adds a separately trained neural network on top of SORT, which increases accuracy for human detections but slightly decreases performance. It also means that using your custom dataset involves training both YOLO and DeepSORT's 'deep association metric'

For a 'bag of tricks' optimized version of YOLOv5 + DeepSORT, see GeekAlexis/FastMOT

License

ClassySORT is released under the GPL License version 3 to promote the open use of the tracker and future improvements. Among other things, this means that code from this repository cannot be used for closed source distributions, and you must license any derived code as GPL3 as well.

classy-sort-yolov5's People

Contributors

tensorturtle avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.