From 78aaf0778d9dc15ff9df13911ef627944df5fa98 Mon Sep 17 00:00:00 2001 From: Scott Klum Date: Mon, 14 Dec 2015 16:13:24 -0500 Subject: [PATCH] Added a few more operating points to evalDetection --- openbr/core/eval.cpp | 8 ++++++++ 1 file changed, 8 insertions(+), 0 deletions(-) diff --git a/openbr/core/eval.cpp b/openbr/core/eval.cpp index 665953c..0d8f40b 100755 --- a/openbr/core/eval.cpp +++ b/openbr/core/eval.cpp @@ -839,6 +839,14 @@ static QStringList computeDetectionResults(const QList &detec qDebug("TAR @ FAR => %f : 1", TP / totalTrueDetections); qDebug("Confidence: %f", detection.confidence); qDebug("TP vs. FP: %f to %f", TP, FP); + } else if (prevFP / numImages < 0.5 && FP / numImages >= 0.5 && discrete) { + qDebug("TAR @ FAR => %f : 0.5", TP / totalTrueDetections); + qDebug("Confidence: %f", detection.confidence); + qDebug("TP vs. FP: %f to %f", TP, FP); + } else if (prevFP / numImages < 0.2 && FP / numImages >= 0.2 && discrete) { + qDebug("TAR @ FAR => %f : 0.2", TP / totalTrueDetections); + qDebug("Confidence: %f", detection.confidence); + qDebug("TP vs. FP: %f to %f", TP, FP); } else if (prevFP / numImages < 0.1 && FP / numImages >= 0.1 && discrete) { qDebug("TAR @ FAR => %f : 0.1", TP / totalTrueDetections); qDebug("Confidence: %f", detection.confidence); -- libgit2 0.21.4