Commit f17baf81b3969d35c99be14efabf6dc7175d7a26
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 | 379 | QString::number(getOperatingPointGivenFAR(operatingPoints, far).TAR, 'f', 3)))); |
| 380 | 380 | |
| 381 | 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 | 383 | lines.append(qPrintable(QString("FT,%1,%2").arg( |
| 384 | 384 | QString::number(tar, 'f', 2), |
| 385 | 385 | QString::number(getOperatingPointGivenTAR(operatingPoints, tar).FAR, 'f', 3)))); | ... | ... |