To include your own dataset and evaluate it as a custom benchmark <YourChallenge>, follow these two steps:
1. Ground truth data preparation
Prepare your sequences in TrackEval/data/gt/mot_challenge/<YourChallenge>/ using the following structure:
.
|—— <SeqName01>
| |—— gt
| | |—— gt.txt
| |—— seqinfo.ini
|—— <SeqName02>
| |—— ...
2. Sequence file creation
Create text files in the seqmaps folder containing the sequence names. The files should follow the pattern <YourChallenge>-<split>.txt (e.g., <YourChallenge>-train.txt, <YourChallenge>-test.txt, or <YourChallenge>-all.txt).
Each file must start with the header name followed by the sequence names:
name
<seqName1>
<seqName2>
3. Execution
Adjust scripts/run_mot_challenge.py and set BENCHMARK = <YourChallenge> to run the evaluation.