# libmot **Repository Path**: SearchSource/libmot ## Basic Information - **Project Name**: libmot - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-20 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # A Library of Multi-Object Tracking in Python and Pytorch ## Installation environments: python 3.6.10, opencv 4.1.1, pytorch 1.3+ ```bash git clone https://github.com/nightmaredimple/libmot --recursive cd libmot/ python setup.py install develop --user ``` The details can be seen from my [blogs](https://huangpiao.tech/) or [zhihu](https://www.zhihu.com/people/huang-piao-72/posts). ## Feature Lists | Block | Method | Reference | Complete | | :---------------------: | :---------------------------------: | :--------------------: | :------: | | | IOU Assignment | iou-tracker&V-IOU | ✓ | | | Linear Assignment | - | ✓ | | **Data Association** | MinCostFlow | MCF | ✓ | | | Other End-to-End Network | DAN&DeepMOT | ☐ | | | GNN&GCN | MPNTrack | ☐ | | ----------------------- | ----------------------------------- | ---------------------- | --- | | | Kalman Filter | Sort&DeepSort | ✓ | | **Motion** | ECC | Tracktor++ | ✓ | | | Epipolar Geometry | TNT | ✓ | | ----------------------- | ----------------------------------- | ---------------------- | --- | | | Re-ID | - | ☐ | | **Appearance** | Feature Fusion&Selection | - | ☐ | | | DAN | DAN | ✓ | | ----------------------- | ----------------------------------- | ---------------------- | --- | | **Detection** | Faster RCNN + FPN | Tracktor++ | ☐ | | ----------------------- | ----------------------------------- | ---------------------- | --- | | **SOT** | CF&Siam | KCF&CN | ☐ | | ----------------------- | ----------------------------------- | ---------------------- | --- | | | DataLoader | - | ✓ | | **Tricks** | Spatial Blocking | - | ✓ | | ----------------------- | ----------------------------------- | ---------------------- | --- | | | Evaluation | - | ✓ | | **Others** | Tracking Visualiztion | - | ✓ | | | Feature Visualiztion | - | ☐ | | ----------------------- | ----------------------------------- | ---------------------- | --- | | **Tracktor** | MIFT(ours) | - | ☐ | | ----------------------- | ----------------------------------- | ---------------------- | --- | | **Detector** | MIFD(ours) | - | ☐ | ## Motion Model ```python python scripts/test_kalman_tracker.py ```