From adf31e815ea202cc16aa3891535c3a4de7ebb75c Mon Sep 17 00:00:00 2001 From: bhklein Date: Thu, 23 Apr 2015 11:03:33 -0400 Subject: [PATCH] genuineSearches vector explained --- openbr/core/eval.cpp | 3 +++ 1 file changed, 3 insertions(+), 0 deletions(-) diff --git a/openbr/core/eval.cpp b/openbr/core/eval.cpp index a8de509..b9b1174 100755 --- a/openbr/core/eval.cpp +++ b/openbr/core/eval.cpp @@ -196,7 +196,10 @@ float Evaluate(const Mat &simmat, const Mat &mask, const QString &csv, const QSt QList comparisons; comparisons.reserve(simmat.rows*simmat.cols); // Flags rows as being mated or non-mated searches + // Positive value: mated search, negative value: non-mated search + // Value of 0: ignored search QVector genuineSearches(simmat.rows, 0); + int totalGenuineSearches = 0, totalImpostorSearches = 0; int genuineCount = 0, impostorCount = 0, numNaNs = 0; for (int i=0; i