TrackEval
TrackEval copied to clipboard
HOTA (and other) evaluation metrics for Multi-Object Tracking (MOT).
Hi, I thought I found a bug in `TrackEval/trackeval/metrics/identity.py`. **Current Version** The `fn_mat[:num_gt_ids, :num_tracker_ids]` and `fp_mat[:num_gt_ids, :num_tracker_ids]` entries are not right. Currently, ``` fn_mat[:num_gt_ids, :num_tracker_ids] = number_of_gt_ids - potential_matches_count fp_mat[:num_gt_ids,...
Allow the `comparison_plots.py` script to take as parameters a list of trackers to include in the generated plots. If no parameter is provided, all the trackers found in the trackers...
Hi I want to use one of the MOTChallenge videos randomly e.g. MOT17-11-SDP to test my tracker's performance. ( i use videos that are for training, so I can get...
@JonathonLuiten Hey, hope all is fine. Well I am trying to evaluate my online deepsort tracker. The method uses a separate object detector and thus cannot use premade detections for...
I want to annotate my custom data to make a similar format to the MOT data format. Are there any open source/free annotation tools? Thanks
Hi, Thanks for the amazing repo. It helps a lot. I have been using the code here for 2D box tracking evaluation in KITTI format dataset. However, it seems there...
In the README [Quickly evaluate on supported benchmarks ](https://github.com/JonathonLuiten/TrackEval#quickly-evaluate-on-supported-benchmarks), the [gt data](https://omnomnom.vision.rwth-aachen.de/data/TrackEval/data.zip) (~150mb) is provided such as YouTube-2019 > data/gt/youtube_vis/youtube_vis_train_sub_split/train_sub_split.json. When I look into this gt file, I find the...
Hi, Thanks for the excellent work! I found HOTA had become one of the most popular metrics for MOT nowadays, everyone in the tracking community is using it. I am...
The paper mentions OHOTA for online tracking. Is it implemented in TrackEval? If so, is there a flag or command-line option for computing this instead of HOTA?