diff --git a/openbr/core/eval.cpp b/openbr/core/eval.cpp index c7dcf66..cfe7666 100755 --- a/openbr/core/eval.cpp +++ b/openbr/core/eval.cpp @@ -842,7 +842,10 @@ static QStringList computeDetectionResults(const QList &detec } } - if (discrete) qDebug("Total TP vs. FP: %f to %f", TP, FP); + if (discrete) { + qDebug("Total TP vs. FP: %f to %f", TP, FP); + qDebug("Overall Recall (TP vs. possible TP): %f (%f vs. %d)", TP / totalTrueDetections, TP, totalTrueDetections); + } const int keep = qMin(points.size(), Max_Points); if (keep < 1) qFatal("Insufficient points.");