From 54c0e6e0cfc86b73fcac7d8039aebc71cc0c7649 Mon Sep 17 00:00:00 2001 From: Josh Klontz Date: Fri, 25 Oct 2024 15:28:29 -0600 Subject: [PATCH] Define an operating point at FAR=0 (#614) * Define an operating point at FAR=0 * generalized approach --- openbr/core/eval.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/openbr/core/eval.cpp b/openbr/core/eval.cpp index c76fcfdd5..3b0e5c2ad 100755 --- a/openbr/core/eval.cpp +++ b/openbr/core/eval.cpp @@ -301,8 +301,7 @@ float Evaluate(const Mat &simmat, const Mat &mask, const File &csv, const QStrin index++; } - if ((falsePositives > previousFalsePositives) && - (truePositives > previousTruePositives)) { + if (truePositives > previousTruePositives) { operatingPoints.append(OperatingPoint(thresh, float(falsePositives)/impostorCount, float(truePositives)/genuineCount)); if (EERIndex == 0) {