# mmtracking
**Repository Path**: AI52CV/mmtracking
## Basic Information
- **Project Name**: mmtracking
- **Description**: 支持视频目标检测任务
支持单目标检测任务
支持多目标检测任务
代码原地址:https://github.com/open-mmlab/mmtracking
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 4
- **Forks**: 1
- **Created**: 2021-04-02
- **Last Updated**: 2022-07-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
[](https://pypi.org/project/mmtrack)
[](https://mmtracking.readthedocs.io/en/latest/)
[](https://github.com/open-mmlab/mmtracking/actions)
[](https://codecov.io/gh/open-mmlab/mmtracking)
[](https://github.com/open-mmlab/mmtracking/blob/master/LICENSE)
Documentation: https://mmtracking.readthedocs.io/
## Introduction
MMTracking is an open source video perception toolbox based on PyTorch.
It is a part of the OpenMMLab project.
The master branch works with PyTorch 1.3 to 1.7.
### Major features
- **The First Unified Video Perception Platform**
We are the first open source toolbox that unifies versatile video perception tasks include video object detection, single object tracking, and multiple object tracking.
- **Modular Design**
We decompose the video perception framework into different components and one can easily construct a customized method by combining different modules.
- **Simple, Fast and Strong**
**Simple**: MMTracking interacts with other OpenMMLab projects. It is built upon [MMDetection](https://github.com/open-mmlab/mmdetection) that we can capitalize any detector only through modifying the configs.
**Fast**: All operations run on GPUs. The training and inference speeds are faster than or comparable to other implementations.
**Strong**: We reproduce state-of-the-art models and some of them even outperform the offical implementations.
## License
This project is released under the [Apache 2.0 license](LICENSE).
## Changelog
v0.5.1 was released in 01/02/2021.
Please refer to [changelog.md](docs/changelog.md) for details and release history.
## Benchmark and model zoo
Results and models are available in the [model zoo](docs/model_zoo.md).
Supported methods of video object detection:
- [x] [DFF](configs/vid/dff) (CVPR 2017)
- [x] [FGFA](configs/vid/fgfa) (ICCV 2017)
- [x] [SELSA](configs/vid/selsa) (ICCV 2019)
Supported methods of multi object tracking:
- [x] [SORT/DeepSORT](configs/mot/deepsort) (ICIP 2016/2017)
- [x] [Tracktor](configs/mot/tracktor) (ICCV 2019)
Supported methods of single object tracking:
- [x] [SiameseRPN++](configs/sot/siamese_rpn) (CVPR 2019)
## Installation
Please refer to [install.md](docs/install.md) for install instructions.
## Get Started
Please see [dataset.md](docs/dataset.md) and [quick_run.md](docs/quick_run.md) for the basic usage of MMTracking.
We also provide usage [tutorials](docs/tutorials/).
## Citation
If you find this project useful in your research, please consider cite:
```latex
@misc{mmtrack2020,
title={{MMTracking: OpenMMLab} video perception toolbox and benchmark},
author={MMTracking Contributors},
howpublished = {\url{https://github.com/open-mmlab/mmtracking}},
year={2020}
}
```
## Contributing
We appreciate all contributions to improve MMTracking. Please refer to [CONTRIBUTING.md](https://github.com/open-mmlab/mmcv/blob/master/CONTRIBUTING.md) for the contributing guideline.
## Acknowledgement
MMTracking is an open source project that welcome any contribution and feedback.
We wish that the toolbox and benchmark could serve the growing research
community by providing a flexible as well as standardized toolkit to reimplement existing methods
and develop their own new video perception methods.
## Projects in OpenMMLab
- [MMCV](https://github.com/open-mmlab/mmcv): OpenMMLab foundational library for computer vision.
- [MMClassification](https://github.com/open-mmlab/mmclassification): OpenMMLab image classification toolbox and benchmark.
- [MMDetection](https://github.com/open-mmlab/mmdetection): OpenMMLab detection toolbox and benchmark.
- [MMDetection3D](https://github.com/open-mmlab/mmdetection3d): OpenMMLab next-generation platform for general 3D object detection.
- [MMSegmentation](https://github.com/open-mmlab/mmsegmentation): OpenMMLab semantic segmentation toolbox and benchmark.
- [MMAction2](https://github.com/open-mmlab/mmaction2): OpenMMLab's next-generation action understanding toolbox and benchmark.
- [MMTracking](https://github.com/open-mmlab/mmtracking): OpenMMLab video perception toolbox and benchmark.
- [MMPose](https://github.com/open-mmlab/mmpose): OpenMMLab pose estimation toolbox and benchmark.
- [MMEditing](https://github.com/open-mmlab/mmediting): OpenMMLab image and video editing toolbox.