diff --git a/bob/bio/gmm/algorithm/IVector_BioHash.py b/bob/bio/gmm/algorithm/IVector_BioHash.py index 4c5d9df1570fd5e943014795a78767c25cfffc7f..008c0790a8daa20ee7a42a074ec03fbfa2f9b736 100644 --- a/bob/bio/gmm/algorithm/IVector_BioHash.py +++ b/bob/bio/gmm/algorithm/IVector_BioHash.py @@ -55,7 +55,7 @@ class IVector_BioHash (IVector): return biohash.create_biohash(ivector, self.length, user_seed) else: # stolen token scenario, so user_seed will be some randomly generated number (same for every person in the database), specified in config file print "STOLEN TOKEN scenario user seed: %s\n" % (self.user_seed) - return biohash.create_biohash(self.ivector, self.length, self.user_seed) + return biohash.create_biohash(ivector, self.length, self.user_seed) def project(self, feature_array, user_seed):