From f17baf81b3969d35c99be14efabf6dc7175d7a26 Mon Sep 17 00:00:00 2001 From: Ben Klein Date: Wed, 22 Jul 2015 12:08:57 -0400 Subject: [PATCH] fix FAR@TAR sampling order to align with plot tables --- openbr/core/eval.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbr/core/eval.cpp b/openbr/core/eval.cpp index 7f99c80..c155df9 100755 --- a/openbr/core/eval.cpp +++ b/openbr/core/eval.cpp @@ -379,7 +379,7 @@ float Evaluate(const Mat &simmat, const Mat &mask, const File &csv, const QStrin QString::number(getOperatingPointGivenFAR(operatingPoints, far).TAR, 'f', 3)))); // Write FAR@TAR Table (FT) - foreach (float tar, QList() << 0.95 << 0.85 << 0.75 << 0.65 << 0.5 << 0.4) + foreach (float tar, QList() << 0.4 << 0.5 << 0.65 << 0.75 << 0.85 << 0.95) lines.append(qPrintable(QString("FT,%1,%2").arg( QString::number(tar, 'f', 2), QString::number(getOperatingPointGivenTAR(operatingPoints, tar).FAR, 'f', 3)))); -- libgit2 0.21.4