Commit 1337561662cb5a0816a5fb4cd0dab0b60cdd48c0
Merge pull request #291 from biometrics/lfw_fix
Fix for issue #260
Showing
1 changed file
with
3 additions
and
0 deletions
openbr/core/core.cpp
| ... | ... | @@ -280,6 +280,9 @@ struct AlgorithmCore |
| 280 | 280 | TemplateList queries = q->read(); |
| 281 | 281 | TemplateList targets = t->read(); |
| 282 | 282 | |
| 283 | + output.set("targetGallery", targetGallery.name ); | |
| 284 | + output.set("queryGallery", queryGallery.name ); | |
| 285 | + | |
| 283 | 286 | // Use a single file for one of the dimensions so that the output makes the right size file |
| 284 | 287 | FileList dummyTarget; |
| 285 | 288 | dummyTarget.append(targets[0]); | ... | ... |