From 67818edceeba5048b3668ca019c7f208209a5242 Mon Sep 17 00:00:00 2001 From: Scott Klum Date: Sun, 8 Nov 2015 20:46:00 +0000 Subject: [PATCH] Added recall output --- openbr/core/eval.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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."); -- libgit2 0.21.4