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
* support computing hota metrics
* fix code style for flake8
* update docstring
* add unit test for hota metrics
* add overall computation for hota
* fix invalid denominator
* fix unconinious id when computing assa
* update README for hota metrics
* update README for hota metrics without for loop
* fix typo
* add detail instruction for hota
Computing HOTA metrics is also possible. However, it cannot be used with the `Accumulator` class directly, as HOTA requires to computing a reweighting matrix from all the frames at the beginning. Here is an example of how to use it:
371
+
372
+
```python
373
+
import os
374
+
import numpy as np
375
+
import motmetrics as mm
376
+
377
+
378
+
defcompute_motchallenge(dir_name):
379
+
# `gt.txt` and `test.txt` should be prepared in MOT15 format
Up until this point we assumed the pairwise object/hypothesis distances to be known. Usually this is not the case. You are mostly given either rectangles or points (centroids) of related objects. To compute a distance matrix from them you can use `motmetrics.distance` module as shown below.
0 commit comments