You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the MOT17 and CrowdHuman datasets, you’ll need to use the provided script to convert their ground truth files to the format we require:
12
+
For the BFT and CrowdHuman datasets, you’ll need to use the provided script to convert their ground truth files to the format we require:
13
13
14
-
- For MOT17: [gen_mot17_gts.py](../data/gen_mot17_gts.py)
15
-
- For CrowdHuman: [gen_crowdhuman_gts.py](../data/gen_crowdhuman_gts.py)
14
+
- For BFT: [gen_bft_gts.py](../tools/gen_bft_gts.py)
15
+
- For CrowdHuman: [gen_crowdhuman_gts.py](../tools/gen_crowdhuman_gts.py)
16
16
17
17
:pushpin: You need to modify the paths in the script according to your requirements.
18
18
@@ -34,12 +34,14 @@ For the MOT17 and CrowdHuman datasets, you’ll need to use the provided script
34
34
│ ├── train_seqmap.txt
35
35
│ ├── val_seqmap.txt
36
36
│ └── test_seqmap.txt
37
-
├── MOT17/
38
-
│ ├── images/
39
-
│ │ ├── train/ # unzip from MOT17, you need to delete some files, see the below the instructions
40
-
│ │ └── test/ # unzip from MOT17
41
-
│ └── gts/
42
-
│ └── train/ # generate by ./data/gen_mot17_gts.py
37
+
├── BFT/
38
+
│ ├── train/
39
+
│ ├── val/
40
+
│ ├── test/
41
+
│ ├── annotations_mot/ # used for generate gts for BFT
42
+
│ ├── train_seqmap.txt
43
+
│ ├── val_seqmap.txt
44
+
│ └── test_seqmap.txt
43
45
└── CrowdHuman/
44
46
├── images/
45
47
│ ├── train/ # unzip from CrowdHuman
@@ -49,8 +51,6 @@ For the MOT17 and CrowdHuman datasets, you’ll need to use the provided script
49
51
└── val/ # generate by ./data/gen_crowdhuman_gts.py
50
52
```
51
53
52
-
:warning: Since each video sequence in MOT17 is stored three times, for each training video sequence, you should delete the other two sequences to achieve deduplication. For instance, in my experiment, I only retained the ‘xxx-DPM’ sequences.”
53
-
54
54
## Q & A
55
55
56
56
- Q: Lack the `val_seqmap.txt` file of SportsMOT? </br>
0 commit comments