Commit c9ff1cc054cd03ebefe0bc6feda04192c9c4075b
1 parent
53da2b10
Print deeper FARs to command for eval
Showing
1 changed file
with
7 additions
and
1 deletions
openbr/core/eval.cpp
| ... | ... | @@ -292,7 +292,13 @@ float Evaluate(const Mat &simmat, const Mat &mask, const QString &csv) |
| 292 | 292 | } |
| 293 | 293 | |
| 294 | 294 | QtUtils::writeFile(csv, lines); |
| 295 | - qDebug("TAR @ FAR = 0.01: %.3f\nRetrieval Rate @ Rank = %d: %.3f", result, Report_Retrieval, getCMC(firstGenuineReturns, Report_Retrieval)); | |
| 295 | + qDebug("TAR @ FAR = 0.01: %.3f",getTAR(operatingPoints, 0.01)); | |
| 296 | + qDebug("TAR @ FAR = 0.001: %.3f",getTAR(operatingPoints, 0.001)); | |
| 297 | + qDebug("TAR @ FAR = 0.0001: %.3f",getTAR(operatingPoints, 0.0001)); | |
| 298 | + qDebug("TAR @ FAR = 0.00001: %.3f",getTAR(operatingPoints, 0.00001)); | |
| 299 | + | |
| 300 | + qDebug("\nRetrieval Rate @ Rank = %d: %.3f", Report_Retrieval, getCMC(firstGenuineReturns, Report_Retrieval)); | |
| 301 | + | |
| 296 | 302 | return result; |
| 297 | 303 | } |
| 298 | 304 | ... | ... |