NIST Fingerprint Image Quality 2
NIST reference implementation fingerprint image quality analyzer.
nfiq2_version.hpp
Go to the documentation of this file.
1 #ifndef NFIQ2_VERSION_HPP_
2 #define NFIQ2_VERSION_HPP_
3 
4 #include <string>
5 
6 namespace NFIQ2 { namespace Version {
7 
9 extern const unsigned int Major;
11 extern const unsigned int Minor;
13 extern const unsigned int Patch;
14 
16 extern const std::string Full;
18 extern const std::string Pretty;
20 extern const std::string Status;
22 extern const std::string BuildDate;
24 extern const std::string Commit;
25 
26 /*
27  * Third-Party Components.
28  */
30 extern const std::string OpenCV;
32 std::string FingerJet();
33 
34 } // namespace Version
35 } // namespace NFIQ
36 
37 #endif /* NFIQ2_VERSION_H_ */
const unsigned int Major
Major version number.
const unsigned int Minor
Minor version number.
const std::string Full
Full version information, including build date and git SHA.
const std::string Commit
Current build commit (git short SHA).
const unsigned int Patch
Patch version number.
const std::string OpenCV
OpenCV version.
std::string FingerJet()
FingerJet version.
const std::string Pretty
Version information formatted in a way suitable for printing.
const std::string BuildDate
Current build date (YmdHM).
const std::string Status
Build version status (e.g., pre-release, beta, etc.).
Classes and functions that contribute to the calculation of NFIQ2 scores.
Definition: nfiq2.hpp:25