usnistgov / frvt

Repository for the Face Recognition Vendor Test (FRVT)
Other
261 stars 114 forks source link

Update enroll_multiface.txt #122

Closed ElisonSherton closed 9 months ago

ElisonSherton commented 9 months ago

Modified line 2 to include the image description

On a closer look at the validation code here we can see that for line 2 of enroll_multiface.txt, only first two images will be considered for creation of the template since

tokens.size() = 6

auto numImages = (tokens.size() - 1)/2;
i.e. numImages = (6 - 1)/2
i.e. numImages = 2

Adding description as the final token in the second line solves this problem and we get the expected template.

Thanks!