• Hardware Platform (Jetson / GPU) jetson Nano 4gb
• DeepStream Version 5.1
• JetPack Version (valid for Jetson only) 4
5.1
Am working on measuring the MOTA MOTP and id switches using MOT challenge. I have enabled in deepstream-app config file “kitti-track-output-dir”.
I receive many. txt files containing following information of this format
Person 1 8348953480534.0 0 0.0 90.000000 208.125000 372.000000 469.687500 1589998464.000000 0.0 0.0 0.0 0.0 0.0 0.0
For measuring metrics, MOT challenge requires format of each line must contain 10 values:
, , , , , , , , , The world coordinates x,y,z are ignored for the 2D challenge and can be filled with -1. However, each line is still required to contain 10 values.All frame numbers, target IDs and bounding boxes are 1-based. Here is an example:
Tracking with bounding boxes
(MOT15, MOT16, MOT17, MOT20)
1, 3, 794.27, 247.59, 71.245, 174.88, -1, -1, -1, -1
1, 6, 1648.1, 119.61, 66.504, 163.24, -1, -1, -1, -1
1, 8, 875.49, 399.98, 95.303, 233.93, -1, -1, -1, -1
…
Anyone can give me clue how I can convert it?