Skip to content
Snippets Groups Projects
Commit 3e967810 authored by Marco De Donno's avatar Marco De Donno
Browse files

Set the format to the returned get_minutiae_paired and get_minutiae list

parent 82a8eaa9
No related branches found
No related tags found
No related merge requests found
......@@ -148,7 +148,10 @@ class NIST_MDD( NISTf ):
lst = NISTf.get_minutiae( self, format = format, idc = idc )
lst.__class__ = AnnotationList
return self.add_pairing( lst )
ret = self.add_pairing( lst )
ret.set_format( format )
return ret
def add_pairing( self, lst, idc = -1 ):
"""
......@@ -347,6 +350,8 @@ class NIST_MDD( NISTf ):
if m.i != None:
ret.append( m )
ret.set_format( format )
return ret
def get_minutiae_paired_count( self, idc = -1 ):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment