Home

Awesome

Towards-Realtime-MOT-Cpp

A C++ codebase implementation of Towards-Realtime-MOT.

Introduction

This repo is the a c++ codebase of the Joint Detection and Embedding (JDE) model. JDE is a fast and high-performance multiple-object tracker that learns the object detection task and appearance embedding task simutaneously in a shared neural network. We hope this repo will help researches/engineers to develop more practical MOT systems.

Requirements

Quick Start

  1. Download JDE weights from [Google] [Baidu].
  2. Convert the pytorch model to a jit model based on Towards-Realtime-MOT, or download [jit_model] (PWD: tupu) directly.
python cvt2jit.py (based on pytorch-1.4.0)
  1. Compile source code by VS2017/2019.
  2. Run JDETracker.

Performance

ModelMOTAIDF1IDSFPFNFPS @Hardware
JDE-576x32063.763.3130766573279433.5 @i7-9700K, RTX-2080ti

Video Demo

<img src="assets/MOT16-03.gif" width="400"/> <img src="assets/MOT16-14.gif" width="400"/>

Reference

Towards-Realtime-MOT
samylee_csdn