NIST Fingerprint Image Quality 2
Fingerprint image quality assessment tool
nfiq2_version.hpp
Go to the documentation of this file.
1/*
2 * This file is part of NIST Fingerprint Image Quality (NFIQ) 2. For more
3 * information on this project, refer to:
4 * - https://nist.gov/services-resources/software/nfiq2
5 * - https://github.com/usnistgov/NFIQ2
6 *
7 * This work is in the public domain. For complete licensing details, refer to:
8 * - https://github.com/usnistgov/NFIQ2/blob/master/LICENSE.md
9 */
10
11#ifndef NFIQ2_VERSION_HPP_
12#define NFIQ2_VERSION_HPP_
13
14#include <string>
15
16namespace NFIQ2 { namespace Version {
17
19extern const unsigned int Major;
21extern const unsigned int Minor;
23extern const unsigned int Patch;
24
26extern const std::string Full;
28extern const std::string Pretty;
30extern const std::string Status;
32extern const std::string BuildDate;
34extern const std::string Commit;
35
36/*
37 * Third-Party Components.
38 */
40extern const std::string OpenCV;
42std::string FingerJet();
43
44} // namespace Version
45} // namespace NFIQ
46
47#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 NFIQ 2 quality scores.
Definition: nfiq2.hpp:97