Closed dariogonle closed 3 years ago
@dariogonle As your detection (positive) missed the object, it will be counted as FP and, as your groundtruth is not detected by any other positive, it will be counted as FN.
Observations: Note that to calculate the Precision and Recall, the FN appears in the denominator of the Recall, as Recall = TP/(TP+FN), where TP+FN=all ground truths. So, in fact, you dont have to compute FN, you just have to consider 'all ground truths'.
Thank you.
The green box is the ground truth and the red the predicted box. If I set the iou threshold to 0.5 I would consider this prediction as a bad prediction, so it would be a FP. But as the ground truth is not detected would it count as well as a FN?
I mean does this count as FP, or as a FP and FN?
Thank you.