cheind / py-motmetrics

:bar_chart: Benchmark multiple object trackers (MOT) in Python
MIT License
1.37k stars 259 forks source link

How to Obtain Precise True Positive TP #141

Closed takehiro-code closed 3 years ago

takehiro-code commented 3 years ago

How do we get the true positive TP? I know I can get it from Precision or recall since Precision = TP/(TP+FP) --> get TP or Recall = TP/(TP+FN) --> get TP I got different TP values and I guess it is due to the limited decimal places in precision or recall. Is there any way to get a precise TP value?

jvlmdr commented 3 years ago

The number of TP is available as "num_detections"