Newer
Older
* Add the functions related to the image processing (get the latent annotated, quality map, ...).
v0.13
-----
* Extend the NIST-fingerprint library to work with the ULWLQMetric module (added in the default installer).
* Bug around : if the 1.003 field is malformed (an IDC is missing), the missing value is replaced with a 1.
* Move deprecated methods in the NISTf_deprecated. Need to import this class instead of NISTf if you want to use deprecated functions with old code (not recommended !).
* Function to add the case name (field 2.007) for Morpho NIST objects.
* Move the version of the standard in a class attribute (changeable on the fly).
* Add the function get_minutiae_all() to get the minutiae from all fingers in one list of lists.
-----
* Update the names of the imports.
* Deprecation of the get_image() function.
* First version of the function to work with fingerprints (get_print() to get the PIL or WSQ image) from 4.999 WSQ encoded image.
* Patch the get_minutiae() function (order of values).
v0.11
-----
* Add the versioneer module to manage the version name in the setup file produced.
* Modification of the structure of the module: separation of the traditional module from the fingerprint functions.
* Change the parameter 'minutiae' in NIST.fingerprint.NISTf.add_Type09() to optional.
* Misc optimizations.
v0.10
* Count the number of minutiae present in the NIST object (field 9.010).
* Checker for the minutiae field (all minutiae have to be on the image).
* Function to add default empty records (Type-01, Type-02, Type-09 and Type-13).
----
* Change in the structure of the package, and addition of the __init__ file to load the NIST package
* Rewriting of the doctest.py module.
* get_fields() and set_fields() to get and set multiple fields at once
* Documentation of all fields (name and abbreviation)
* Type-14, Type-10, Type-15, Type-16, Type-17, Type-18, Type-19, Type-20, Type-21, Type-98 and Type-99 parser
v0.8
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
----
* Function to delete a ntype, idc or field
* Updater for the File Content field (1.003) based on the content of the NIST object
* Field 4.005 checker (conformation to the standard)
* Type-04 dumper
* Patch the type for the Type-04 data
* Bug fix for the unsupported Type (allowing to skip the record)
* Bug fix for the data in 999 tagid
* Bug fix for the order of the excepted ntype
v0.7
----
* Warning for unsupported Type
* Type-04 parser
* get_caseName, get_center
* 'Grayscale Compression Algorithm' field decoder
* Functions for image format transform (PIL <-> RAW)
* Get and set the latent friction ridge image (Type-13) in PIL and RAW format
v0.6
---
* Parser between the 9.012 field and the minutiae table
* Function to return the minutiae table
v0.5
----
* Autoloader (to detect the type (NIST object or URI to file) and load it in memory
* @deprecated decorator for sort deprecation (backward compatibility)
* Function to check and return the IDC (if unique) of a ntype
* Function to get the content of a field via the field-tag
* tagSplitter function
v0.4
----
* __str__ and __repr__ functions
* Function to write the NIST object to disk
* Function do dump the content of the NIST object in binary (ready to write to disk)
* Function to check some errors possible in the content of the NIST object
* Function to return the tag from a ntype and a tagid
* Set an IDC for Type-01, even if the standard says nothing about it. For simplification of the code later
* Function to clean the self.data (deletion of empty fields)
* Add some fields in the LABEL variable
v0.3
----
* Function to dump the content of the NIST object in a string variable
* Add the leveler function
* Function to get the abbreviation and description of fields
* Functions to get the list of ntype and idc's
* Move the Logger class to the misc library.
v0.2
----
* Function to process the File Content (field 1.003)
* LABEL of some fields
* Debug information
* Binary onscreen dumper
v0.1
----
* First version of the parser for Type-01, Type-02, Type-09 and Type-13
* Initial commit