Commit f17baf81b3969d35c99be14efabf6dc7175d7a26

Authored by Ben Klein
1 parent d4e42a03

fix FAR@TAR sampling order to align with plot tables

Showing 1 changed file with 1 additions and 1 deletions
openbr/core/eval.cpp
@@ -379,7 +379,7 @@ float Evaluate(const Mat &simmat, const Mat &mask, const File &csv, const QStrin @@ -379,7 +379,7 @@ float Evaluate(const Mat &simmat, const Mat &mask, const File &csv, const QStrin
379 QString::number(getOperatingPointGivenFAR(operatingPoints, far).TAR, 'f', 3)))); 379 QString::number(getOperatingPointGivenFAR(operatingPoints, far).TAR, 'f', 3))));
380 380
381 // Write FAR@TAR Table (FT) 381 // Write FAR@TAR Table (FT)
382 - foreach (float tar, QList<float>() << 0.95 << 0.85 << 0.75 << 0.65 << 0.5 << 0.4) 382 + foreach (float tar, QList<float>() << 0.4 << 0.5 << 0.65 << 0.75 << 0.85 << 0.95)
383 lines.append(qPrintable(QString("FT,%1,%2").arg( 383 lines.append(qPrintable(QString("FT,%1,%2").arg(
384 QString::number(tar, 'f', 2), 384 QString::number(tar, 'f', 2),
385 QString::number(getOperatingPointGivenTAR(operatingPoints, tar).FAR, 'f', 3)))); 385 QString::number(getOperatingPointGivenTAR(operatingPoints, tar).FAR, 'f', 3))));