├── .gitignore ├── README.html ├── README.md ├── data ├── MOT16-11 │ ├── gt.txt │ └── res.txt └── MOT16-13 │ ├── gt.txt │ └── res.txt ├── evaluate_tracking.py ├── seqmaps └── test.txt └── utils ├── __init__.py ├── bbox.py ├── io.py └── measurements.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.swp 3 | *.txt 4 | -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenh10/mot_evaluation/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenh10/mot_evaluation/HEAD/README.md -------------------------------------------------------------------------------- /data/MOT16-11/gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenh10/mot_evaluation/HEAD/data/MOT16-11/gt.txt -------------------------------------------------------------------------------- /data/MOT16-11/res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenh10/mot_evaluation/HEAD/data/MOT16-11/res.txt -------------------------------------------------------------------------------- /data/MOT16-13/gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenh10/mot_evaluation/HEAD/data/MOT16-13/gt.txt -------------------------------------------------------------------------------- /data/MOT16-13/res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenh10/mot_evaluation/HEAD/data/MOT16-13/res.txt -------------------------------------------------------------------------------- /evaluate_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenh10/mot_evaluation/HEAD/evaluate_tracking.py -------------------------------------------------------------------------------- /seqmaps/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenh10/mot_evaluation/HEAD/seqmaps/test.txt -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /utils/bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenh10/mot_evaluation/HEAD/utils/bbox.py -------------------------------------------------------------------------------- /utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenh10/mot_evaluation/HEAD/utils/io.py -------------------------------------------------------------------------------- /utils/measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenh10/mot_evaluation/HEAD/utils/measurements.py --------------------------------------------------------------------------------