nbis-python 0.1.4__py3-none-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- LICENSE +63 -0
- nbis/__init__.py +36 -0
- nbis/nbis/__init__.py +1 -0
- nbis/nbis/libnbis.dylib +0 -0
- nbis/nbis/nbis.py +2430 -0
- nbis_python-0.1.4.dist-info/METADATA +224 -0
- nbis_python-0.1.4.dist-info/RECORD +10 -0
- nbis_python-0.1.4.dist-info/WHEEL +4 -0
- nbis_python-0.1.4.dist-info/licenses/LICENSE +63 -0
- nbis_python-0.1.4.dist-info/sboms/nbis-rs.cyclonedx.json +7698 -0
LICENSE
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
MIT License (Seventh Sense AI library)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Seventh Sense Artificial Intelligence Private Limited
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
----
|
|
24
|
+
|
|
25
|
+
NIST NBIS License for Algorithms (Public Domain)
|
|
26
|
+
|
|
27
|
+
This software and/or related materials was developed at the National Institute
|
|
28
|
+
of Standards and Technology (NIST) by employees of the Federal Government
|
|
29
|
+
in the course of their official duties. Pursuant to title 17 Section 105
|
|
30
|
+
of the United States Code, this software is not subject to copyright
|
|
31
|
+
protection and is in the public domain.
|
|
32
|
+
|
|
33
|
+
This software and/or related materials have been determined to be not subject
|
|
34
|
+
to the EAR (see Part 734.3 of the EAR for exact details) because it is
|
|
35
|
+
a publicly available technology and software, and is freely distributed
|
|
36
|
+
to any interested party with no licensing requirements. Therefore, it is
|
|
37
|
+
permissible to distribute this software as a free download from the internet.
|
|
38
|
+
|
|
39
|
+
Disclaimer:
|
|
40
|
+
This software and/or related materials was developed to promote biometric
|
|
41
|
+
standards and biometric technology testing for the Federal Government
|
|
42
|
+
in accordance with the USA PATRIOT Act and the Enhanced Border Security
|
|
43
|
+
and Visa Entry Reform Act. Specific hardware and software products identified
|
|
44
|
+
in this software were used in order to perform the software development.
|
|
45
|
+
In no case does such identification imply recommendation or endorsement
|
|
46
|
+
by the National Institute of Standards and Technology, nor does it imply that
|
|
47
|
+
the products and equipment identified are necessarily the best available
|
|
48
|
+
for the purpose.
|
|
49
|
+
|
|
50
|
+
This software and/or related materials are provided "AS-IS" without warranty
|
|
51
|
+
of any kind including NO WARRANTY OF PERFORMANCE, MERCHANTABILITY,
|
|
52
|
+
NO WARRANTY OF NON-INFRINGEMENT OF ANY 3RD PARTY INTELLECTUAL PROPERTY
|
|
53
|
+
or FITNESS FOR A PARTICULAR PURPOSE or for any purpose whatsoever, for the
|
|
54
|
+
licensed product, however used. In no event shall NIST be liable for any
|
|
55
|
+
damages and/or costs, including but not limited to incidental or consequential
|
|
56
|
+
damages of any kind, including economic damage or injury to property and lost
|
|
57
|
+
profits, regardless of whether NIST shall be advised, have reason to know,
|
|
58
|
+
or in fact shall know of the possibility.
|
|
59
|
+
|
|
60
|
+
By using this software, you agree to bear all risk relating to quality,
|
|
61
|
+
use and performance of the software and/or related materials. You agree
|
|
62
|
+
to hold the Government harmless from any claim arising from your use
|
|
63
|
+
of the software.
|
nbis/__init__.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"""Python bindings for NBIS fingerprint processing (Rust + UniFFI)."""
|
|
2
|
+
|
|
3
|
+
from .nbis import (
|
|
4
|
+
Minutia,
|
|
5
|
+
MinutiaKind,
|
|
6
|
+
Minutiae,
|
|
7
|
+
NbisError,
|
|
8
|
+
NbisExtractor,
|
|
9
|
+
NbisExtractorSettings,
|
|
10
|
+
Nfiq2Result,
|
|
11
|
+
Nfiq2Value,
|
|
12
|
+
Position,
|
|
13
|
+
Point,
|
|
14
|
+
Roi,
|
|
15
|
+
new_nbis_extractor,
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
# Backward-compatible alias (Rust type is `ROI`, UniFFI exposes `Roi` in Python).
|
|
19
|
+
ROI = Roi
|
|
20
|
+
|
|
21
|
+
__version__ = "0.1.4"
|
|
22
|
+
__all__ = [
|
|
23
|
+
"Minutia",
|
|
24
|
+
"MinutiaKind",
|
|
25
|
+
"Minutiae",
|
|
26
|
+
"NbisError",
|
|
27
|
+
"NbisExtractor",
|
|
28
|
+
"NbisExtractorSettings",
|
|
29
|
+
"Nfiq2Result",
|
|
30
|
+
"Nfiq2Value",
|
|
31
|
+
"Position",
|
|
32
|
+
"Point",
|
|
33
|
+
"Roi",
|
|
34
|
+
"ROI",
|
|
35
|
+
"new_nbis_extractor",
|
|
36
|
+
]
|
nbis/nbis/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .nbis import * # NOQA
|
nbis/nbis/libnbis.dylib
ADDED
|
Binary file
|