Update README.md
This commit is contained in:
parent
562cec6814
commit
b90e8b8b4b
1 changed files with 9 additions and 1 deletions
10
README.md
10
README.md
|
@ -6,7 +6,13 @@ This repo is the a codebase of the Joint Detection and Embedding (JDE) model. JD
|
||||||
|
|
||||||
We hope this repo will help researches/engineers to develop more practical MOT systems. For algorithm development, we provide training data, baseline models and evaluation methods to make a level playground. For application usage, we also provide a small video demo that takes raw videos as input without any bells and whistles.
|
We hope this repo will help researches/engineers to develop more practical MOT systems. For algorithm development, we provide training data, baseline models and evaluation methods to make a level playground. For application usage, we also provide a small video demo that takes raw videos as input without any bells and whistles.
|
||||||
|
|
||||||
## Installation
|
## Requirements
|
||||||
|
* Python 3.6
|
||||||
|
* [Pytorch](https://pytorch.org) >= 1.0.1
|
||||||
|
* [syncbn](https://github.com/ytoon/Synchronized-BatchNorm-PyTorch) (Optional, compile and place it under utils/syncbn, or simply replace with nn.BatchNorm [here](https://github.com/Zhongdao/Towards-Realtime-MOT/blob/master/models.py#L12))
|
||||||
|
* [maskrcnn-benchmark](https://github.com/facebookresearch/maskrcnn-benchmark) (Their GPU NMS is used in this project)
|
||||||
|
* python-opencv
|
||||||
|
* ffmpeg (Optional, used in the video demo)
|
||||||
|
|
||||||
## Video Demo
|
## Video Demo
|
||||||
|
|
||||||
|
@ -20,3 +26,5 @@ We hope this repo will help researches/engineers to develop more practical MOT s
|
||||||
|
|
||||||
## Train with custom datasets
|
## Train with custom datasets
|
||||||
|
|
||||||
|
## Acknowledgement
|
||||||
|
A large portion of code is borrowed from [ultralytics/yolov3](https://github.com/ultralytics/yolov3) and [longcw/MOTDT](https://github.com/longcw/MOTDT), many thanks to their wonderful work!
|
||||||
|
|
Loading…
Reference in a new issue