Commit c48c08d12002cd93df9f7752e1672f35bdef39c2
1 parent
0d067c12
rename these to avoid collision
Showing
1 changed file
with
3 additions
and
3 deletions
openbr/core/eval.cpp
| ... | ... | @@ -383,14 +383,14 @@ float Evaluate(const Mat &simmat, const Mat &mask, const File &csv, const QStrin |
| 383 | 383 | QString::number(TAR, 'f', 2), |
| 384 | 384 | QString::number(getOperatingPoint(operatingPoints, "TAR", TAR).FAR, 'f', 3)))); |
| 385 | 385 | |
| 386 | - // Write FAR@Score Table (FARS) and TAR@Score table (TARS) | |
| 386 | + // Write FAR@Score Table (SF) and TAR@Score table (ST) | |
| 387 | 387 | foreach(const float score, QList<float>() << 0.05 << 0.1 << 0.15 << 0.2 << 0.25 << 0.3 << 0.35 << 0.4 << 0.45 << 0.5 |
| 388 | 388 | << 0.55 << 0.6 << 0.65 << 0.7 << 0.75 << 0.8 << 0.85 << 0.9 << 0.95) { |
| 389 | 389 | const OperatingPoint op = getOperatingPoint(operatingPoints, "Score", score); |
| 390 | - lines.append(qPrintable(QString("FARS,%1,%2").arg( | |
| 390 | + lines.append(qPrintable(QString("SF,%1,%2").arg( | |
| 391 | 391 | QString::number(score, 'f', 2), |
| 392 | 392 | QString::number(op.FAR)))); |
| 393 | - lines.append(qPrintable(QString("TARS,%1,%2").arg( | |
| 393 | + lines.append(qPrintable(QString("ST,%1,%2").arg( | |
| 394 | 394 | QString::number(score, 'f', 2), |
| 395 | 395 | QString::number(op.TAR)))); |
| 396 | 396 | } | ... | ... |