vtool-ibeis 2.2.1__py3-none-any.whl → 2.3.1__py3-none-any.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.
- vtool_ibeis/__init__.py +1 -1
- vtool_ibeis/blend.py +1 -1
- vtool_ibeis/clustering2.py +1 -1
- vtool_ibeis/confusion.py +53 -6
- vtool_ibeis/coverage_grid.py +2 -2
- vtool_ibeis/coverage_kpts.py +17 -16
- vtool_ibeis/demodata.py +3 -3
- vtool_ibeis/distance.py +19 -0
- vtool_ibeis/exif.py +4 -4
- vtool_ibeis/features.py +4 -6
- vtool_ibeis/geometry.py +3 -9
- vtool_ibeis/histogram.py +11 -8
- vtool_ibeis/image.py +46 -44
- vtool_ibeis/image_filters.py +10 -6
- vtool_ibeis/inspect_matches.py +43 -6
- vtool_ibeis/keypoint.py +1 -1
- vtool_ibeis/matching.py +13 -9
- vtool_ibeis/nearest_neighbors.py +4 -2
- vtool_ibeis/other.py +34 -20
- vtool_ibeis/patch.py +11 -23
- vtool_ibeis/quality_classifier.py +2 -2
- vtool_ibeis/score_normalization.py +15 -10
- vtool_ibeis/segmentation.py +1 -1
- vtool_ibeis/spatial_verification.py +4 -6
- vtool_ibeis/symbolic.py +3 -4
- vtool_ibeis-2.3.1.dist-info/METADATA +440 -0
- vtool_ibeis-2.3.1.dist-info/RECORD +42 -0
- {vtool_ibeis-2.2.1.dist-info → vtool_ibeis-2.3.1.dist-info}/WHEEL +1 -1
- vtool_ibeis-2.2.1.dist-info/METADATA +0 -435
- vtool_ibeis-2.2.1.dist-info/RECORD +0 -42
- {vtool_ibeis-2.2.1.dist-info → vtool_ibeis-2.3.1.dist-info/licenses}/LICENSE +0 -0
- {vtool_ibeis-2.2.1.dist-info → vtool_ibeis-2.3.1.dist-info}/top_level.txt +0 -0
|
@@ -1,435 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: vtool-ibeis
|
|
3
|
-
Version: 2.2.1
|
|
4
|
-
Summary: vision tools for IBEIS
|
|
5
|
-
Home-page: https://github.com/Erotemic/vtool_ibeis
|
|
6
|
-
Author: Jon Crall, Jason Parham, Hendrik Weideman, Avi Weinstock, Zackary Rutfield, Chuck Stewart
|
|
7
|
-
Author-email: erotemic@gmail.com
|
|
8
|
-
License: Apache 2
|
|
9
|
-
Platform: UNKNOWN
|
|
10
|
-
Classifier: Development Status :: 4 - Beta
|
|
11
|
-
Classifier: Intended Audience :: Developers
|
|
12
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
13
|
-
Classifier: Topic :: Utilities
|
|
14
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
-
Requires-Python: >=3.7
|
|
21
|
-
Description-Content-Type: text/x-rst
|
|
22
|
-
License-File: LICENSE
|
|
23
|
-
Requires-Dist: delorean
|
|
24
|
-
Requires-Dist: packaging
|
|
25
|
-
Requires-Dist: six
|
|
26
|
-
Requires-Dist: ubelt
|
|
27
|
-
Requires-Dist: utool
|
|
28
|
-
Requires-Dist: Pillow ; python_version < "3.10" and python_version >= "3.9"
|
|
29
|
-
Requires-Dist: numpy ; python_version < "3.10" and python_version >= "3.9"
|
|
30
|
-
Requires-Dist: scikit-image ; python_version < "3.10" and python_version >= "3.9"
|
|
31
|
-
Requires-Dist: scikit-learn ; python_version < "3.10" and python_version >= "3.9"
|
|
32
|
-
Requires-Dist: scipy ; python_version < "3.10" and python_version >= "3.9"
|
|
33
|
-
Requires-Dist: statsmodels ; python_version < "3.10" and python_version >= "3.9"
|
|
34
|
-
Requires-Dist: Pillow ; python_version < "3.11" and python_version >= "3.10"
|
|
35
|
-
Requires-Dist: numpy ; python_version < "3.11" and python_version >= "3.10"
|
|
36
|
-
Requires-Dist: scikit-image ; python_version < "3.11" and python_version >= "3.10"
|
|
37
|
-
Requires-Dist: scikit-learn ; python_version < "3.11" and python_version >= "3.10"
|
|
38
|
-
Requires-Dist: scipy ; python_version < "3.11" and python_version >= "3.10"
|
|
39
|
-
Requires-Dist: statsmodels ; python_version < "3.11" and python_version >= "3.10"
|
|
40
|
-
Requires-Dist: networkx ; python_version < "3.5" and python_version >= "2.7"
|
|
41
|
-
Requires-Dist: networkx ; python_version < "3.6" and python_version >= "3.5"
|
|
42
|
-
Requires-Dist: Pillow ; python_version < "3.7" and python_version >= "3.6"
|
|
43
|
-
Requires-Dist: networkx ; python_version < "3.7" and python_version >= "3.6"
|
|
44
|
-
Requires-Dist: numpy ; python_version < "3.7" and python_version >= "3.6"
|
|
45
|
-
Requires-Dist: scikit-image ; python_version < "3.7" and python_version >= "3.6"
|
|
46
|
-
Requires-Dist: scikit-learn ; python_version < "3.7" and python_version >= "3.6"
|
|
47
|
-
Requires-Dist: Pillow ; python_version < "3.8" and python_version >= "3.7"
|
|
48
|
-
Requires-Dist: networkx ; python_version < "3.8" and python_version >= "3.7"
|
|
49
|
-
Requires-Dist: numpy ; python_version < "3.8" and python_version >= "3.7"
|
|
50
|
-
Requires-Dist: scikit-image ; python_version < "3.8" and python_version >= "3.7"
|
|
51
|
-
Requires-Dist: scikit-learn ; python_version < "3.8" and python_version >= "3.7"
|
|
52
|
-
Requires-Dist: scipy ; python_version < "3.8" and python_version >= "3.7"
|
|
53
|
-
Requires-Dist: statsmodels ; python_version < "3.8" and python_version >= "3.7"
|
|
54
|
-
Requires-Dist: Pillow ; python_version < "3.9" and python_version >= "3.8"
|
|
55
|
-
Requires-Dist: numpy ; python_version < "3.9" and python_version >= "3.8"
|
|
56
|
-
Requires-Dist: scikit-image ; python_version < "3.9" and python_version >= "3.8"
|
|
57
|
-
Requires-Dist: scikit-learn ; python_version < "3.9" and python_version >= "3.8"
|
|
58
|
-
Requires-Dist: scipy ; python_version < "3.9" and python_version >= "3.8"
|
|
59
|
-
Requires-Dist: statsmodels ; python_version < "3.9" and python_version >= "3.8"
|
|
60
|
-
Requires-Dist: Pillow ; python_version < "4.0" and python_version >= "3.11"
|
|
61
|
-
Requires-Dist: scikit-image ; python_version < "4.0" and python_version >= "3.11"
|
|
62
|
-
Requires-Dist: scikit-learn ; python_version < "4.0" and python_version >= "3.11"
|
|
63
|
-
Requires-Dist: scipy ; python_version < "4.0" and python_version >= "3.11"
|
|
64
|
-
Requires-Dist: statsmodels ; python_version < "4.0" and python_version >= "3.11"
|
|
65
|
-
Requires-Dist: numpy ; python_version >= "3.11"
|
|
66
|
-
Requires-Dist: networkx ; python_version >= "3.8"
|
|
67
|
-
Provides-Extra: all
|
|
68
|
-
Requires-Dist: codecov ; extra == 'all'
|
|
69
|
-
Requires-Dist: delorean ; extra == 'all'
|
|
70
|
-
Requires-Dist: packaging ; extra == 'all'
|
|
71
|
-
Requires-Dist: six ; extra == 'all'
|
|
72
|
-
Requires-Dist: ubelt ; extra == 'all'
|
|
73
|
-
Requires-Dist: utool ; extra == 'all'
|
|
74
|
-
Requires-Dist: xdoctest ; extra == 'all'
|
|
75
|
-
Provides-Extra: all-strict
|
|
76
|
-
Requires-Dist: codecov (==2.0.15) ; extra == 'all-strict'
|
|
77
|
-
Requires-Dist: delorean (==1.0.0) ; extra == 'all-strict'
|
|
78
|
-
Requires-Dist: packaging (==21.3) ; extra == 'all-strict'
|
|
79
|
-
Requires-Dist: six (==1.10.0) ; extra == 'all-strict'
|
|
80
|
-
Requires-Dist: ubelt (==1.2.3) ; extra == 'all-strict'
|
|
81
|
-
Requires-Dist: utool (==2.1.7) ; extra == 'all-strict'
|
|
82
|
-
Requires-Dist: xdoctest (==0.14.0) ; extra == 'all-strict'
|
|
83
|
-
Requires-Dist: coverage (==4.5) ; (python_version < "2.7" and python_version >= "2.6") and extra == 'all-strict'
|
|
84
|
-
Requires-Dist: pytest-cov (==2.8.1) ; (python_version < "2.8.0" and python_version >= "2.7.0") and extra == 'all-strict'
|
|
85
|
-
Requires-Dist: pytest (<=4.6.11,==4.6.0) ; (python_version < "2.8.0" and python_version >= "2.7.0") and extra == 'all-strict'
|
|
86
|
-
Requires-Dist: Pillow (==8.3.2) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all-strict'
|
|
87
|
-
Requires-Dist: coverage (==5.3.1) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all-strict'
|
|
88
|
-
Requires-Dist: numpy (==1.19.3) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all-strict'
|
|
89
|
-
Requires-Dist: pyflann-ibeis (==2.2.0) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all-strict'
|
|
90
|
-
Requires-Dist: pyhesaff (==2.1.0) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all-strict'
|
|
91
|
-
Requires-Dist: scikit-image (==0.18.0) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all-strict'
|
|
92
|
-
Requires-Dist: scikit-learn (==1.0.2) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all-strict'
|
|
93
|
-
Requires-Dist: scipy (==1.8.0) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all-strict'
|
|
94
|
-
Requires-Dist: statsmodels (==0.13.1) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all-strict'
|
|
95
|
-
Requires-Dist: vtool-ibeis-ext (==0.1.0) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all-strict'
|
|
96
|
-
Requires-Dist: pytest (==4.6.0) ; (python_version < "3.10.0" and python_version >= "3.7.0") and extra == 'all-strict'
|
|
97
|
-
Requires-Dist: Pillow (==9.1.0) ; (python_version < "3.11" and python_version >= "3.10") and extra == 'all-strict'
|
|
98
|
-
Requires-Dist: numpy (==1.21.6) ; (python_version < "3.11" and python_version >= "3.10") and extra == 'all-strict'
|
|
99
|
-
Requires-Dist: pyflann-ibeis (==2.2.0) ; (python_version < "3.11" and python_version >= "3.10") and extra == 'all-strict'
|
|
100
|
-
Requires-Dist: pyhesaff (==2.1.0) ; (python_version < "3.11" and python_version >= "3.10") and extra == 'all-strict'
|
|
101
|
-
Requires-Dist: scikit-image (==0.19.0) ; (python_version < "3.11" and python_version >= "3.10") and extra == 'all-strict'
|
|
102
|
-
Requires-Dist: scikit-learn (==1.0.2) ; (python_version < "3.11" and python_version >= "3.10") and extra == 'all-strict'
|
|
103
|
-
Requires-Dist: scipy (==1.8.0) ; (python_version < "3.11" and python_version >= "3.10") and extra == 'all-strict'
|
|
104
|
-
Requires-Dist: statsmodels (==0.13.1) ; (python_version < "3.11" and python_version >= "3.10") and extra == 'all-strict'
|
|
105
|
-
Requires-Dist: vtool-ibeis-ext (==0.1.0) ; (python_version < "3.11" and python_version >= "3.10") and extra == 'all-strict'
|
|
106
|
-
Requires-Dist: coverage (==5.3.1) ; (python_version < "3.4" and python_version >= "2.7") and extra == 'all-strict'
|
|
107
|
-
Requires-Dist: networkx (==1.11) ; (python_version < "3.5" and python_version >= "2.7") and extra == 'all-strict'
|
|
108
|
-
Requires-Dist: coverage (==4.3.4) ; (python_version < "3.5" and python_version >= "3.4") and extra == 'all-strict'
|
|
109
|
-
Requires-Dist: pytest-cov (==2.8.1) ; (python_version < "3.5.0" and python_version >= "3.4.0") and extra == 'all-strict'
|
|
110
|
-
Requires-Dist: pytest (<=4.6.11,==4.6.0) ; (python_version < "3.5.0" and python_version >= "3.4.0") and extra == 'all-strict'
|
|
111
|
-
Requires-Dist: coverage (==5.3.1) ; (python_version < "3.6" and python_version >= "3.5") and extra == 'all-strict'
|
|
112
|
-
Requires-Dist: networkx (==2.3) ; (python_version < "3.6" and python_version >= "3.5") and extra == 'all-strict'
|
|
113
|
-
Requires-Dist: pytest-cov (==2.9.0) ; (python_version < "3.6.0" and python_version >= "3.5.0") and extra == 'all-strict'
|
|
114
|
-
Requires-Dist: pytest (<=6.1.2,==4.6.0) ; (python_version < "3.6.0" and python_version >= "3.5.0") and extra == 'all-strict'
|
|
115
|
-
Requires-Dist: Pillow (==8.3.2) ; (python_version < "3.7" and python_version >= "3.6") and extra == 'all-strict'
|
|
116
|
-
Requires-Dist: coverage (==6.1.1) ; (python_version < "3.7" and python_version >= "3.6") and extra == 'all-strict'
|
|
117
|
-
Requires-Dist: networkx (==2.5) ; (python_version < "3.7" and python_version >= "3.6") and extra == 'all-strict'
|
|
118
|
-
Requires-Dist: numpy (==1.19.2) ; (python_version < "3.7" and python_version >= "3.6") and extra == 'all-strict'
|
|
119
|
-
Requires-Dist: pyhesaff (==2.0.1) ; (python_version < "3.7" and python_version >= "3.6") and extra == 'all-strict'
|
|
120
|
-
Requires-Dist: scikit-image (==0.17.2) ; (python_version < "3.7" and python_version >= "3.6") and extra == 'all-strict'
|
|
121
|
-
Requires-Dist: scikit-learn (==0.24.1) ; (python_version < "3.7" and python_version >= "3.6") and extra == 'all-strict'
|
|
122
|
-
Requires-Dist: pytest (==4.6.0) ; (python_version < "3.7.0" and python_version >= "3.6.0") and extra == 'all-strict'
|
|
123
|
-
Requires-Dist: Pillow (==9.0.0) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all-strict'
|
|
124
|
-
Requires-Dist: coverage (==6.1.1) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all-strict'
|
|
125
|
-
Requires-Dist: networkx (==2.6.2) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all-strict'
|
|
126
|
-
Requires-Dist: numpy (==1.19.2) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all-strict'
|
|
127
|
-
Requires-Dist: pyflann-ibeis (==2.2.0) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all-strict'
|
|
128
|
-
Requires-Dist: pyhesaff (==2.0.1) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all-strict'
|
|
129
|
-
Requires-Dist: scikit-image (==0.17.2) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all-strict'
|
|
130
|
-
Requires-Dist: scikit-learn (==0.24.1) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all-strict'
|
|
131
|
-
Requires-Dist: scipy (==1.6.0) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all-strict'
|
|
132
|
-
Requires-Dist: statsmodels (==0.12.2) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all-strict'
|
|
133
|
-
Requires-Dist: vtool-ibeis-ext (==0.1.0) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all-strict'
|
|
134
|
-
Requires-Dist: Pillow (==8.3.2) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all-strict'
|
|
135
|
-
Requires-Dist: coverage (==6.1.1) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all-strict'
|
|
136
|
-
Requires-Dist: numpy (==1.19.2) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all-strict'
|
|
137
|
-
Requires-Dist: pyflann-ibeis (==2.0.0) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all-strict'
|
|
138
|
-
Requires-Dist: pyhesaff (==2.0.1) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all-strict'
|
|
139
|
-
Requires-Dist: scikit-image (==0.17.2) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all-strict'
|
|
140
|
-
Requires-Dist: scikit-learn (==1.0.2) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all-strict'
|
|
141
|
-
Requires-Dist: scipy (==1.8.0) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all-strict'
|
|
142
|
-
Requires-Dist: statsmodels (==0.13.1) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all-strict'
|
|
143
|
-
Requires-Dist: vtool-ibeis-ext (==0.1.0) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all-strict'
|
|
144
|
-
Requires-Dist: Pillow (==9.4.0) ; (python_version < "4.0" and python_version >= "3.11") and extra == 'all-strict'
|
|
145
|
-
Requires-Dist: pyflann-ibeis (==2.3.0) ; (python_version < "4.0" and python_version >= "3.11") and extra == 'all-strict'
|
|
146
|
-
Requires-Dist: pyhesaff (==2.1.1) ; (python_version < "4.0" and python_version >= "3.11") and extra == 'all-strict'
|
|
147
|
-
Requires-Dist: scikit-image (==0.19.3) ; (python_version < "4.0" and python_version >= "3.11") and extra == 'all-strict'
|
|
148
|
-
Requires-Dist: scikit-learn (==1.1.3) ; (python_version < "4.0" and python_version >= "3.11") and extra == 'all-strict'
|
|
149
|
-
Requires-Dist: scipy (==1.9.2) ; (python_version < "4.0" and python_version >= "3.11") and extra == 'all-strict'
|
|
150
|
-
Requires-Dist: statsmodels (==0.13.3) ; (python_version < "4.0" and python_version >= "3.11") and extra == 'all-strict'
|
|
151
|
-
Requires-Dist: vtool-ibeis-ext (==0.1.1) ; (python_version < "4.0" and python_version >= "3.11") and extra == 'all-strict'
|
|
152
|
-
Requires-Dist: coverage (==6.1.1) ; (python_version >= "3.10") and extra == 'all-strict'
|
|
153
|
-
Requires-Dist: pytest (==6.2.5) ; (python_version >= "3.10.0") and extra == 'all-strict'
|
|
154
|
-
Requires-Dist: numpy (==1.23.2) ; (python_version >= "3.11") and extra == 'all-strict'
|
|
155
|
-
Requires-Dist: pytest-cov (==3.0.0) ; (python_version >= "3.6.0") and extra == 'all-strict'
|
|
156
|
-
Requires-Dist: networkx (==2.7) ; (python_version >= "3.8") and extra == 'all-strict'
|
|
157
|
-
Requires-Dist: coverage ; (python_version < "2.7" and python_version >= "2.6") and extra == 'all'
|
|
158
|
-
Requires-Dist: pytest ; (python_version < "2.8.0" and python_version >= "2.7.0") and extra == 'all'
|
|
159
|
-
Requires-Dist: pytest-cov ; (python_version < "2.8.0" and python_version >= "2.7.0") and extra == 'all'
|
|
160
|
-
Requires-Dist: Pillow ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all'
|
|
161
|
-
Requires-Dist: coverage ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all'
|
|
162
|
-
Requires-Dist: numpy ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all'
|
|
163
|
-
Requires-Dist: pyflann-ibeis ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all'
|
|
164
|
-
Requires-Dist: pyhesaff ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all'
|
|
165
|
-
Requires-Dist: scikit-image ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all'
|
|
166
|
-
Requires-Dist: scikit-learn ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all'
|
|
167
|
-
Requires-Dist: scipy ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all'
|
|
168
|
-
Requires-Dist: statsmodels ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all'
|
|
169
|
-
Requires-Dist: vtool-ibeis-ext ; (python_version < "3.10" and python_version >= "3.9") and extra == 'all'
|
|
170
|
-
Requires-Dist: pytest ; (python_version < "3.10.0" and python_version >= "3.7.0") and extra == 'all'
|
|
171
|
-
Requires-Dist: Pillow ; (python_version < "3.11" and python_version >= "3.10") and extra == 'all'
|
|
172
|
-
Requires-Dist: numpy ; (python_version < "3.11" and python_version >= "3.10") and extra == 'all'
|
|
173
|
-
Requires-Dist: pyflann-ibeis ; (python_version < "3.11" and python_version >= "3.10") and extra == 'all'
|
|
174
|
-
Requires-Dist: pyhesaff ; (python_version < "3.11" and python_version >= "3.10") and extra == 'all'
|
|
175
|
-
Requires-Dist: scikit-image ; (python_version < "3.11" and python_version >= "3.10") and extra == 'all'
|
|
176
|
-
Requires-Dist: scikit-learn ; (python_version < "3.11" and python_version >= "3.10") and extra == 'all'
|
|
177
|
-
Requires-Dist: scipy ; (python_version < "3.11" and python_version >= "3.10") and extra == 'all'
|
|
178
|
-
Requires-Dist: statsmodels ; (python_version < "3.11" and python_version >= "3.10") and extra == 'all'
|
|
179
|
-
Requires-Dist: vtool-ibeis-ext ; (python_version < "3.11" and python_version >= "3.10") and extra == 'all'
|
|
180
|
-
Requires-Dist: coverage ; (python_version < "3.4" and python_version >= "2.7") and extra == 'all'
|
|
181
|
-
Requires-Dist: networkx ; (python_version < "3.5" and python_version >= "2.7") and extra == 'all'
|
|
182
|
-
Requires-Dist: coverage ; (python_version < "3.5" and python_version >= "3.4") and extra == 'all'
|
|
183
|
-
Requires-Dist: pytest ; (python_version < "3.5.0" and python_version >= "3.4.0") and extra == 'all'
|
|
184
|
-
Requires-Dist: pytest-cov ; (python_version < "3.5.0" and python_version >= "3.4.0") and extra == 'all'
|
|
185
|
-
Requires-Dist: coverage ; (python_version < "3.6" and python_version >= "3.5") and extra == 'all'
|
|
186
|
-
Requires-Dist: networkx ; (python_version < "3.6" and python_version >= "3.5") and extra == 'all'
|
|
187
|
-
Requires-Dist: pytest ; (python_version < "3.6.0" and python_version >= "3.5.0") and extra == 'all'
|
|
188
|
-
Requires-Dist: pytest-cov ; (python_version < "3.6.0" and python_version >= "3.5.0") and extra == 'all'
|
|
189
|
-
Requires-Dist: Pillow ; (python_version < "3.7" and python_version >= "3.6") and extra == 'all'
|
|
190
|
-
Requires-Dist: coverage ; (python_version < "3.7" and python_version >= "3.6") and extra == 'all'
|
|
191
|
-
Requires-Dist: networkx ; (python_version < "3.7" and python_version >= "3.6") and extra == 'all'
|
|
192
|
-
Requires-Dist: numpy ; (python_version < "3.7" and python_version >= "3.6") and extra == 'all'
|
|
193
|
-
Requires-Dist: pyhesaff ; (python_version < "3.7" and python_version >= "3.6") and extra == 'all'
|
|
194
|
-
Requires-Dist: scikit-image ; (python_version < "3.7" and python_version >= "3.6") and extra == 'all'
|
|
195
|
-
Requires-Dist: scikit-learn ; (python_version < "3.7" and python_version >= "3.6") and extra == 'all'
|
|
196
|
-
Requires-Dist: pytest ; (python_version < "3.7.0" and python_version >= "3.6.0") and extra == 'all'
|
|
197
|
-
Requires-Dist: Pillow ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all'
|
|
198
|
-
Requires-Dist: coverage ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all'
|
|
199
|
-
Requires-Dist: networkx ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all'
|
|
200
|
-
Requires-Dist: numpy ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all'
|
|
201
|
-
Requires-Dist: pyflann-ibeis ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all'
|
|
202
|
-
Requires-Dist: pyhesaff ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all'
|
|
203
|
-
Requires-Dist: scikit-image ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all'
|
|
204
|
-
Requires-Dist: scikit-learn ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all'
|
|
205
|
-
Requires-Dist: scipy ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all'
|
|
206
|
-
Requires-Dist: statsmodels ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all'
|
|
207
|
-
Requires-Dist: vtool-ibeis-ext ; (python_version < "3.8" and python_version >= "3.7") and extra == 'all'
|
|
208
|
-
Requires-Dist: Pillow ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all'
|
|
209
|
-
Requires-Dist: coverage ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all'
|
|
210
|
-
Requires-Dist: numpy ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all'
|
|
211
|
-
Requires-Dist: pyflann-ibeis ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all'
|
|
212
|
-
Requires-Dist: pyhesaff ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all'
|
|
213
|
-
Requires-Dist: scikit-image ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all'
|
|
214
|
-
Requires-Dist: scikit-learn ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all'
|
|
215
|
-
Requires-Dist: scipy ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all'
|
|
216
|
-
Requires-Dist: statsmodels ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all'
|
|
217
|
-
Requires-Dist: vtool-ibeis-ext ; (python_version < "3.9" and python_version >= "3.8") and extra == 'all'
|
|
218
|
-
Requires-Dist: Pillow ; (python_version < "4.0" and python_version >= "3.11") and extra == 'all'
|
|
219
|
-
Requires-Dist: pyflann-ibeis ; (python_version < "4.0" and python_version >= "3.11") and extra == 'all'
|
|
220
|
-
Requires-Dist: pyhesaff ; (python_version < "4.0" and python_version >= "3.11") and extra == 'all'
|
|
221
|
-
Requires-Dist: scikit-image ; (python_version < "4.0" and python_version >= "3.11") and extra == 'all'
|
|
222
|
-
Requires-Dist: scikit-learn ; (python_version < "4.0" and python_version >= "3.11") and extra == 'all'
|
|
223
|
-
Requires-Dist: scipy ; (python_version < "4.0" and python_version >= "3.11") and extra == 'all'
|
|
224
|
-
Requires-Dist: statsmodels ; (python_version < "4.0" and python_version >= "3.11") and extra == 'all'
|
|
225
|
-
Requires-Dist: vtool-ibeis-ext ; (python_version < "4.0" and python_version >= "3.11") and extra == 'all'
|
|
226
|
-
Requires-Dist: coverage ; (python_version >= "3.10") and extra == 'all'
|
|
227
|
-
Requires-Dist: pytest ; (python_version >= "3.10.0") and extra == 'all'
|
|
228
|
-
Requires-Dist: numpy ; (python_version >= "3.11") and extra == 'all'
|
|
229
|
-
Requires-Dist: pytest-cov ; (python_version >= "3.6.0") and extra == 'all'
|
|
230
|
-
Requires-Dist: networkx ; (python_version >= "3.8") and extra == 'all'
|
|
231
|
-
Provides-Extra: graphics
|
|
232
|
-
Provides-Extra: graphics-strict
|
|
233
|
-
Requires-Dist: opencv-python (==3.4.15.55) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'graphics-strict'
|
|
234
|
-
Requires-Dist: opencv-python (==3.1.0.0) ; (python_version < "3.4" and python_version >= "2.7") and extra == 'graphics-strict'
|
|
235
|
-
Requires-Dist: opencv-python (==3.1.0.5) ; (python_version < "3.5" and python_version >= "3.4") and extra == 'graphics-strict'
|
|
236
|
-
Requires-Dist: opencv-python (==3.1.0.2) ; (python_version < "3.6" and python_version >= "3.5") and extra == 'graphics-strict'
|
|
237
|
-
Requires-Dist: opencv-python (==3.4.13.47) ; (python_version < "3.7" and python_version >= "3.6") and extra == 'graphics-strict'
|
|
238
|
-
Requires-Dist: opencv-python (==3.4.15.55) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'graphics-strict'
|
|
239
|
-
Requires-Dist: opencv-python (==3.4.15.55) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'graphics-strict'
|
|
240
|
-
Requires-Dist: opencv-python (==4.5.4.58) ; (python_version >= "3.10") and extra == 'graphics-strict'
|
|
241
|
-
Requires-Dist: opencv-python ; (python_version < "3.10" and python_version >= "3.9") and extra == 'graphics'
|
|
242
|
-
Requires-Dist: opencv-python ; (python_version < "3.4" and python_version >= "2.7") and extra == 'graphics'
|
|
243
|
-
Requires-Dist: opencv-python ; (python_version < "3.5" and python_version >= "3.4") and extra == 'graphics'
|
|
244
|
-
Requires-Dist: opencv-python ; (python_version < "3.6" and python_version >= "3.5") and extra == 'graphics'
|
|
245
|
-
Requires-Dist: opencv-python ; (python_version < "3.7" and python_version >= "3.6") and extra == 'graphics'
|
|
246
|
-
Requires-Dist: opencv-python ; (python_version < "3.8" and python_version >= "3.7") and extra == 'graphics'
|
|
247
|
-
Requires-Dist: opencv-python ; (python_version < "3.9" and python_version >= "3.8") and extra == 'graphics'
|
|
248
|
-
Requires-Dist: opencv-python ; (python_version >= "3.10") and extra == 'graphics'
|
|
249
|
-
Provides-Extra: headless
|
|
250
|
-
Provides-Extra: headless-strict
|
|
251
|
-
Requires-Dist: opencv-python-headless (==3.4.15.55) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'headless-strict'
|
|
252
|
-
Requires-Dist: opencv-python-headless (==3.4.2.16) ; (python_version < "3.4" and python_version >= "2.7") and extra == 'headless-strict'
|
|
253
|
-
Requires-Dist: opencv-python-headless (==3.4.2.16) ; (python_version < "3.5" and python_version >= "3.4") and extra == 'headless-strict'
|
|
254
|
-
Requires-Dist: opencv-python-headless (==3.4.2.16) ; (python_version < "3.6" and python_version >= "3.5") and extra == 'headless-strict'
|
|
255
|
-
Requires-Dist: opencv-python-headless (==3.4.13.47) ; (python_version < "3.7" and python_version >= "3.6") and extra == 'headless-strict'
|
|
256
|
-
Requires-Dist: opencv-python-headless (==3.4.15.55) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'headless-strict'
|
|
257
|
-
Requires-Dist: opencv-python-headless (==3.4.15.55) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'headless-strict'
|
|
258
|
-
Requires-Dist: opencv-python-headless (==4.5.5.62) ; (python_version >= "3.10") and extra == 'headless-strict'
|
|
259
|
-
Requires-Dist: opencv-python-headless ; (python_version < "3.10" and python_version >= "3.9") and extra == 'headless'
|
|
260
|
-
Requires-Dist: opencv-python-headless ; (python_version < "3.4" and python_version >= "2.7") and extra == 'headless'
|
|
261
|
-
Requires-Dist: opencv-python-headless ; (python_version < "3.5" and python_version >= "3.4") and extra == 'headless'
|
|
262
|
-
Requires-Dist: opencv-python-headless ; (python_version < "3.6" and python_version >= "3.5") and extra == 'headless'
|
|
263
|
-
Requires-Dist: opencv-python-headless ; (python_version < "3.7" and python_version >= "3.6") and extra == 'headless'
|
|
264
|
-
Requires-Dist: opencv-python-headless ; (python_version < "3.8" and python_version >= "3.7") and extra == 'headless'
|
|
265
|
-
Requires-Dist: opencv-python-headless ; (python_version < "3.9" and python_version >= "3.8") and extra == 'headless'
|
|
266
|
-
Requires-Dist: opencv-python-headless ; (python_version >= "3.10") and extra == 'headless'
|
|
267
|
-
Provides-Extra: optional
|
|
268
|
-
Provides-Extra: optional-strict
|
|
269
|
-
Requires-Dist: pyflann-ibeis (==2.2.0) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'optional-strict'
|
|
270
|
-
Requires-Dist: pyhesaff (==2.1.0) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'optional-strict'
|
|
271
|
-
Requires-Dist: vtool-ibeis-ext (==0.1.0) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'optional-strict'
|
|
272
|
-
Requires-Dist: pyflann-ibeis (==2.2.0) ; (python_version < "3.11" and python_version >= "3.10") and extra == 'optional-strict'
|
|
273
|
-
Requires-Dist: pyhesaff (==2.1.0) ; (python_version < "3.11" and python_version >= "3.10") and extra == 'optional-strict'
|
|
274
|
-
Requires-Dist: vtool-ibeis-ext (==0.1.0) ; (python_version < "3.11" and python_version >= "3.10") and extra == 'optional-strict'
|
|
275
|
-
Requires-Dist: pyhesaff (==2.0.1) ; (python_version < "3.7" and python_version >= "3.6") and extra == 'optional-strict'
|
|
276
|
-
Requires-Dist: pyflann-ibeis (==2.2.0) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'optional-strict'
|
|
277
|
-
Requires-Dist: pyhesaff (==2.0.1) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'optional-strict'
|
|
278
|
-
Requires-Dist: vtool-ibeis-ext (==0.1.0) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'optional-strict'
|
|
279
|
-
Requires-Dist: pyflann-ibeis (==2.0.0) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'optional-strict'
|
|
280
|
-
Requires-Dist: pyhesaff (==2.0.1) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'optional-strict'
|
|
281
|
-
Requires-Dist: vtool-ibeis-ext (==0.1.0) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'optional-strict'
|
|
282
|
-
Requires-Dist: pyflann-ibeis (==2.3.0) ; (python_version < "4.0" and python_version >= "3.11") and extra == 'optional-strict'
|
|
283
|
-
Requires-Dist: pyhesaff (==2.1.1) ; (python_version < "4.0" and python_version >= "3.11") and extra == 'optional-strict'
|
|
284
|
-
Requires-Dist: vtool-ibeis-ext (==0.1.1) ; (python_version < "4.0" and python_version >= "3.11") and extra == 'optional-strict'
|
|
285
|
-
Requires-Dist: pyflann-ibeis ; (python_version < "3.10" and python_version >= "3.9") and extra == 'optional'
|
|
286
|
-
Requires-Dist: pyhesaff ; (python_version < "3.10" and python_version >= "3.9") and extra == 'optional'
|
|
287
|
-
Requires-Dist: vtool-ibeis-ext ; (python_version < "3.10" and python_version >= "3.9") and extra == 'optional'
|
|
288
|
-
Requires-Dist: pyflann-ibeis ; (python_version < "3.11" and python_version >= "3.10") and extra == 'optional'
|
|
289
|
-
Requires-Dist: pyhesaff ; (python_version < "3.11" and python_version >= "3.10") and extra == 'optional'
|
|
290
|
-
Requires-Dist: vtool-ibeis-ext ; (python_version < "3.11" and python_version >= "3.10") and extra == 'optional'
|
|
291
|
-
Requires-Dist: pyhesaff ; (python_version < "3.7" and python_version >= "3.6") and extra == 'optional'
|
|
292
|
-
Requires-Dist: pyflann-ibeis ; (python_version < "3.8" and python_version >= "3.7") and extra == 'optional'
|
|
293
|
-
Requires-Dist: pyhesaff ; (python_version < "3.8" and python_version >= "3.7") and extra == 'optional'
|
|
294
|
-
Requires-Dist: vtool-ibeis-ext ; (python_version < "3.8" and python_version >= "3.7") and extra == 'optional'
|
|
295
|
-
Requires-Dist: pyflann-ibeis ; (python_version < "3.9" and python_version >= "3.8") and extra == 'optional'
|
|
296
|
-
Requires-Dist: pyhesaff ; (python_version < "3.9" and python_version >= "3.8") and extra == 'optional'
|
|
297
|
-
Requires-Dist: vtool-ibeis-ext ; (python_version < "3.9" and python_version >= "3.8") and extra == 'optional'
|
|
298
|
-
Requires-Dist: pyflann-ibeis ; (python_version < "4.0" and python_version >= "3.11") and extra == 'optional'
|
|
299
|
-
Requires-Dist: pyhesaff ; (python_version < "4.0" and python_version >= "3.11") and extra == 'optional'
|
|
300
|
-
Requires-Dist: vtool-ibeis-ext ; (python_version < "4.0" and python_version >= "3.11") and extra == 'optional'
|
|
301
|
-
Provides-Extra: runtime-strict
|
|
302
|
-
Requires-Dist: delorean (==1.0.0) ; extra == 'runtime-strict'
|
|
303
|
-
Requires-Dist: packaging (==21.3) ; extra == 'runtime-strict'
|
|
304
|
-
Requires-Dist: six (==1.10.0) ; extra == 'runtime-strict'
|
|
305
|
-
Requires-Dist: ubelt (==1.2.3) ; extra == 'runtime-strict'
|
|
306
|
-
Requires-Dist: utool (==2.1.7) ; extra == 'runtime-strict'
|
|
307
|
-
Requires-Dist: Pillow (==8.3.2) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'runtime-strict'
|
|
308
|
-
Requires-Dist: numpy (==1.19.3) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'runtime-strict'
|
|
309
|
-
Requires-Dist: scikit-image (==0.18.0) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'runtime-strict'
|
|
310
|
-
Requires-Dist: scikit-learn (==1.0.2) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'runtime-strict'
|
|
311
|
-
Requires-Dist: scipy (==1.8.0) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'runtime-strict'
|
|
312
|
-
Requires-Dist: statsmodels (==0.13.1) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'runtime-strict'
|
|
313
|
-
Requires-Dist: Pillow (==9.1.0) ; (python_version < "3.11" and python_version >= "3.10") and extra == 'runtime-strict'
|
|
314
|
-
Requires-Dist: numpy (==1.21.6) ; (python_version < "3.11" and python_version >= "3.10") and extra == 'runtime-strict'
|
|
315
|
-
Requires-Dist: scikit-image (==0.19.0) ; (python_version < "3.11" and python_version >= "3.10") and extra == 'runtime-strict'
|
|
316
|
-
Requires-Dist: scikit-learn (==1.0.2) ; (python_version < "3.11" and python_version >= "3.10") and extra == 'runtime-strict'
|
|
317
|
-
Requires-Dist: scipy (==1.8.0) ; (python_version < "3.11" and python_version >= "3.10") and extra == 'runtime-strict'
|
|
318
|
-
Requires-Dist: statsmodels (==0.13.1) ; (python_version < "3.11" and python_version >= "3.10") and extra == 'runtime-strict'
|
|
319
|
-
Requires-Dist: networkx (==1.11) ; (python_version < "3.5" and python_version >= "2.7") and extra == 'runtime-strict'
|
|
320
|
-
Requires-Dist: networkx (==2.3) ; (python_version < "3.6" and python_version >= "3.5") and extra == 'runtime-strict'
|
|
321
|
-
Requires-Dist: Pillow (==8.3.2) ; (python_version < "3.7" and python_version >= "3.6") and extra == 'runtime-strict'
|
|
322
|
-
Requires-Dist: networkx (==2.5) ; (python_version < "3.7" and python_version >= "3.6") and extra == 'runtime-strict'
|
|
323
|
-
Requires-Dist: numpy (==1.19.2) ; (python_version < "3.7" and python_version >= "3.6") and extra == 'runtime-strict'
|
|
324
|
-
Requires-Dist: scikit-image (==0.17.2) ; (python_version < "3.7" and python_version >= "3.6") and extra == 'runtime-strict'
|
|
325
|
-
Requires-Dist: scikit-learn (==0.24.1) ; (python_version < "3.7" and python_version >= "3.6") and extra == 'runtime-strict'
|
|
326
|
-
Requires-Dist: Pillow (==9.0.0) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'runtime-strict'
|
|
327
|
-
Requires-Dist: networkx (==2.6.2) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'runtime-strict'
|
|
328
|
-
Requires-Dist: numpy (==1.19.2) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'runtime-strict'
|
|
329
|
-
Requires-Dist: scikit-image (==0.17.2) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'runtime-strict'
|
|
330
|
-
Requires-Dist: scikit-learn (==0.24.1) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'runtime-strict'
|
|
331
|
-
Requires-Dist: scipy (==1.6.0) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'runtime-strict'
|
|
332
|
-
Requires-Dist: statsmodels (==0.12.2) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'runtime-strict'
|
|
333
|
-
Requires-Dist: Pillow (==8.3.2) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'runtime-strict'
|
|
334
|
-
Requires-Dist: numpy (==1.19.2) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'runtime-strict'
|
|
335
|
-
Requires-Dist: scikit-image (==0.17.2) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'runtime-strict'
|
|
336
|
-
Requires-Dist: scikit-learn (==1.0.2) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'runtime-strict'
|
|
337
|
-
Requires-Dist: scipy (==1.8.0) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'runtime-strict'
|
|
338
|
-
Requires-Dist: statsmodels (==0.13.1) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'runtime-strict'
|
|
339
|
-
Requires-Dist: Pillow (==9.4.0) ; (python_version < "4.0" and python_version >= "3.11") and extra == 'runtime-strict'
|
|
340
|
-
Requires-Dist: scikit-image (==0.19.3) ; (python_version < "4.0" and python_version >= "3.11") and extra == 'runtime-strict'
|
|
341
|
-
Requires-Dist: scikit-learn (==1.1.3) ; (python_version < "4.0" and python_version >= "3.11") and extra == 'runtime-strict'
|
|
342
|
-
Requires-Dist: scipy (==1.9.2) ; (python_version < "4.0" and python_version >= "3.11") and extra == 'runtime-strict'
|
|
343
|
-
Requires-Dist: statsmodels (==0.13.3) ; (python_version < "4.0" and python_version >= "3.11") and extra == 'runtime-strict'
|
|
344
|
-
Requires-Dist: numpy (==1.23.2) ; (python_version >= "3.11") and extra == 'runtime-strict'
|
|
345
|
-
Requires-Dist: networkx (==2.7) ; (python_version >= "3.8") and extra == 'runtime-strict'
|
|
346
|
-
Provides-Extra: tests
|
|
347
|
-
Requires-Dist: codecov ; extra == 'tests'
|
|
348
|
-
Requires-Dist: xdoctest ; extra == 'tests'
|
|
349
|
-
Provides-Extra: tests-strict
|
|
350
|
-
Requires-Dist: codecov (==2.0.15) ; extra == 'tests-strict'
|
|
351
|
-
Requires-Dist: xdoctest (==0.14.0) ; extra == 'tests-strict'
|
|
352
|
-
Requires-Dist: coverage (==4.5) ; (python_version < "2.7" and python_version >= "2.6") and extra == 'tests-strict'
|
|
353
|
-
Requires-Dist: pytest-cov (==2.8.1) ; (python_version < "2.8.0" and python_version >= "2.7.0") and extra == 'tests-strict'
|
|
354
|
-
Requires-Dist: pytest (<=4.6.11,==4.6.0) ; (python_version < "2.8.0" and python_version >= "2.7.0") and extra == 'tests-strict'
|
|
355
|
-
Requires-Dist: coverage (==5.3.1) ; (python_version < "3.10" and python_version >= "3.9") and extra == 'tests-strict'
|
|
356
|
-
Requires-Dist: pytest (==4.6.0) ; (python_version < "3.10.0" and python_version >= "3.7.0") and extra == 'tests-strict'
|
|
357
|
-
Requires-Dist: coverage (==5.3.1) ; (python_version < "3.4" and python_version >= "2.7") and extra == 'tests-strict'
|
|
358
|
-
Requires-Dist: coverage (==4.3.4) ; (python_version < "3.5" and python_version >= "3.4") and extra == 'tests-strict'
|
|
359
|
-
Requires-Dist: pytest-cov (==2.8.1) ; (python_version < "3.5.0" and python_version >= "3.4.0") and extra == 'tests-strict'
|
|
360
|
-
Requires-Dist: pytest (<=4.6.11,==4.6.0) ; (python_version < "3.5.0" and python_version >= "3.4.0") and extra == 'tests-strict'
|
|
361
|
-
Requires-Dist: coverage (==5.3.1) ; (python_version < "3.6" and python_version >= "3.5") and extra == 'tests-strict'
|
|
362
|
-
Requires-Dist: pytest-cov (==2.9.0) ; (python_version < "3.6.0" and python_version >= "3.5.0") and extra == 'tests-strict'
|
|
363
|
-
Requires-Dist: pytest (<=6.1.2,==4.6.0) ; (python_version < "3.6.0" and python_version >= "3.5.0") and extra == 'tests-strict'
|
|
364
|
-
Requires-Dist: coverage (==6.1.1) ; (python_version < "3.7" and python_version >= "3.6") and extra == 'tests-strict'
|
|
365
|
-
Requires-Dist: pytest (==4.6.0) ; (python_version < "3.7.0" and python_version >= "3.6.0") and extra == 'tests-strict'
|
|
366
|
-
Requires-Dist: coverage (==6.1.1) ; (python_version < "3.8" and python_version >= "3.7") and extra == 'tests-strict'
|
|
367
|
-
Requires-Dist: coverage (==6.1.1) ; (python_version < "3.9" and python_version >= "3.8") and extra == 'tests-strict'
|
|
368
|
-
Requires-Dist: coverage (==6.1.1) ; (python_version >= "3.10") and extra == 'tests-strict'
|
|
369
|
-
Requires-Dist: pytest (==6.2.5) ; (python_version >= "3.10.0") and extra == 'tests-strict'
|
|
370
|
-
Requires-Dist: pytest-cov (==3.0.0) ; (python_version >= "3.6.0") and extra == 'tests-strict'
|
|
371
|
-
Requires-Dist: coverage ; (python_version < "2.7" and python_version >= "2.6") and extra == 'tests'
|
|
372
|
-
Requires-Dist: pytest ; (python_version < "2.8.0" and python_version >= "2.7.0") and extra == 'tests'
|
|
373
|
-
Requires-Dist: pytest-cov ; (python_version < "2.8.0" and python_version >= "2.7.0") and extra == 'tests'
|
|
374
|
-
Requires-Dist: coverage ; (python_version < "3.10" and python_version >= "3.9") and extra == 'tests'
|
|
375
|
-
Requires-Dist: pytest ; (python_version < "3.10.0" and python_version >= "3.7.0") and extra == 'tests'
|
|
376
|
-
Requires-Dist: coverage ; (python_version < "3.4" and python_version >= "2.7") and extra == 'tests'
|
|
377
|
-
Requires-Dist: coverage ; (python_version < "3.5" and python_version >= "3.4") and extra == 'tests'
|
|
378
|
-
Requires-Dist: pytest ; (python_version < "3.5.0" and python_version >= "3.4.0") and extra == 'tests'
|
|
379
|
-
Requires-Dist: pytest-cov ; (python_version < "3.5.0" and python_version >= "3.4.0") and extra == 'tests'
|
|
380
|
-
Requires-Dist: coverage ; (python_version < "3.6" and python_version >= "3.5") and extra == 'tests'
|
|
381
|
-
Requires-Dist: pytest ; (python_version < "3.6.0" and python_version >= "3.5.0") and extra == 'tests'
|
|
382
|
-
Requires-Dist: pytest-cov ; (python_version < "3.6.0" and python_version >= "3.5.0") and extra == 'tests'
|
|
383
|
-
Requires-Dist: coverage ; (python_version < "3.7" and python_version >= "3.6") and extra == 'tests'
|
|
384
|
-
Requires-Dist: pytest ; (python_version < "3.7.0" and python_version >= "3.6.0") and extra == 'tests'
|
|
385
|
-
Requires-Dist: coverage ; (python_version < "3.8" and python_version >= "3.7") and extra == 'tests'
|
|
386
|
-
Requires-Dist: coverage ; (python_version < "3.9" and python_version >= "3.8") and extra == 'tests'
|
|
387
|
-
Requires-Dist: coverage ; (python_version >= "3.10") and extra == 'tests'
|
|
388
|
-
Requires-Dist: pytest ; (python_version >= "3.10.0") and extra == 'tests'
|
|
389
|
-
Requires-Dist: pytest-cov ; (python_version >= "3.6.0") and extra == 'tests'
|
|
390
|
-
|
|
391
|
-
vtool_ibeis
|
|
392
|
-
===========
|
|
393
|
-
|
|
394
|
-
|Pypi| |Downloads| |Codecov| |Travis| |Appveyor|
|
|
395
|
-
|
|
396
|
-
Vision Tools - tools for computer vision. Part of the WildMe / IBEIS Project.
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
Repos relevant to the ibeis project:
|
|
400
|
-
|
|
401
|
-
* https://github.com/Erotemic/plottool_ibeis
|
|
402
|
-
|
|
403
|
-
* https://github.com/Erotemic/guitool_ibeis
|
|
404
|
-
|
|
405
|
-
* https://github.com/Erotemic/dtool_ibeis
|
|
406
|
-
|
|
407
|
-
* https://github.com/Erotemic/vtool_ibeis
|
|
408
|
-
|
|
409
|
-
* https://github.com/Erotemic/vtool_ibeis_ext
|
|
410
|
-
|
|
411
|
-
* https://github.com/Erotemic/pyflann_ibeis
|
|
412
|
-
|
|
413
|
-
* https://github.com/Erotemic/pyhesaff
|
|
414
|
-
|
|
415
|
-
* https://github.com/Erotemic/utool
|
|
416
|
-
|
|
417
|
-
* https://github.com/Erotemic/ibeis
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
.. |CircleCI| image:: https://circleci.com/gh/Erotemic/vtool_ibeis.svg?style=svg
|
|
421
|
-
:target: https://circleci.com/gh/Erotemic/vtool_ibeis
|
|
422
|
-
.. |Travis| image:: https://img.shields.io/travis/Erotemic/vtool_ibeis/master.svg?label=Travis%20CI
|
|
423
|
-
:target: https://travis-ci.org/Erotemic/vtool_ibeis?branch=master
|
|
424
|
-
.. |Appveyor| image:: https://ci.appveyor.com/api/projects/status/github/Erotemic/vtool_ibeis?branch=master&svg=True
|
|
425
|
-
:target: https://ci.appveyor.com/project/Erotemic/vtool_ibeis/branch/master
|
|
426
|
-
.. |Codecov| image:: https://codecov.io/github/Erotemic/vtool_ibeis/badge.svg?branch=master&service=github
|
|
427
|
-
:target: https://codecov.io/github/Erotemic/vtool_ibeis?branch=master
|
|
428
|
-
.. |Pypi| image:: https://img.shields.io/pypi/v/vtool_ibeis.svg
|
|
429
|
-
:target: https://pypi.python.org/pypi/vtool_ibeis
|
|
430
|
-
.. |Downloads| image:: https://img.shields.io/pypi/dm/vtool_ibeis.svg
|
|
431
|
-
:target: https://pypistats.org/packages/vtool_ibeis
|
|
432
|
-
.. |ReadTheDocs| image:: https://readthedocs.org/projects/vtool_ibeis/badge/?version=latest
|
|
433
|
-
:target: http://vtool_ibeis.readthedocs.io/en/latest/
|
|
434
|
-
|
|
435
|
-
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
vtool_ibeis/__init__.py,sha256=IWBlM6uHDFLCQX8OzdfnY2OmeGXfMCD5FonWwbH8DG0,37732
|
|
2
|
-
vtool_ibeis/__main__.py,sha256=vSVdz60cNorVoIP7Hrud_gruoi_Mlfiex-SZ0INSwYE,777
|
|
3
|
-
vtool_ibeis/_pyflann_backend.py,sha256=5MedKGE-JCfNx3-Xh-ixz7H-4YqBHIPGRWbhRW5SIKc,1815
|
|
4
|
-
vtool_ibeis/_rhomb_dist.py,sha256=2DAtyLZhYap5k0sWW6Zj-kxFDLOv5n1F-nLERSfv1tA,11919
|
|
5
|
-
vtool_ibeis/blend.py,sha256=mRwlFVQVg7jL0gY43qtlKjDcAaLBUZTw5dpXIZmmGHM,13569
|
|
6
|
-
vtool_ibeis/chip.py,sha256=QsZymrh6bFagjjHXIZNSiWcOkuSsIUdWQMlovtclkWg,15699
|
|
7
|
-
vtool_ibeis/clustering2.py,sha256=_ZmjZxNoR6EHxgeXoKKsHuqeTJUjib--6eMHjW31JSU,30788
|
|
8
|
-
vtool_ibeis/confusion.py,sha256=bYQug9PUmGDzr07w2Xw1eri35luwOqzmhIcyKI9KYSg,40883
|
|
9
|
-
vtool_ibeis/coverage_grid.py,sha256=o6ec7uqfYhjnncMp3_bvdi2qwCP8krXPPX_NIZdQJ_Y,13263
|
|
10
|
-
vtool_ibeis/coverage_kpts.py,sha256=Xealkc_Oh4XxokwLSgSHm0SrvA3ifoA_q6CQCM7u0XE,19203
|
|
11
|
-
vtool_ibeis/demodata.py,sha256=7hXasSqBwlYDhkWI2tbRXEKdHG671MvxWCcxn2LPDyo,40928
|
|
12
|
-
vtool_ibeis/distance.py,sha256=uf6vyBka5o9BkX8KwC04_h-oqHdF0xTWTFRqab1h2Vo,25083
|
|
13
|
-
vtool_ibeis/ellipse.py,sha256=5zdDH05_ettk7RofzRf4rMKtUtjFXpOrKIAferqbwpw,15439
|
|
14
|
-
vtool_ibeis/exif.py,sha256=QvSOLjAKM8pd-7gRwr9Eydb6o1u9DcVfzMP00zUJ94s,13256
|
|
15
|
-
vtool_ibeis/features.py,sha256=HwDni_NisAYsSBRWU0zZiRy14cWHFsHY3nPynYFrhdE,13434
|
|
16
|
-
vtool_ibeis/fontdemo.py,sha256=3JV5UOQbKlEum6zo1cVMzKCqjaOcUNvR8j3Y8Dj4nzo,8103
|
|
17
|
-
vtool_ibeis/geometry.py,sha256=ZOiQsnuf_YcOSASKQncmc1DgD3GovXw-ba4x7m__Uyg,18885
|
|
18
|
-
vtool_ibeis/histogram.py,sha256=UyN_cpByGfIF5kusJLadh_xWe6fgGoFjpCUW6oQrvyg,40094
|
|
19
|
-
vtool_ibeis/image.py,sha256=dtnLfKgz7smv7BIG47gCYAXPEbMeNfImigloVKKfNY8,106295
|
|
20
|
-
vtool_ibeis/image_filters.py,sha256=745C_ABHMHDcIOdbi62pHeqyp2GlC-15qeo9R7j9kEY,6918
|
|
21
|
-
vtool_ibeis/image_shared.py,sha256=jLf0BJrf-tTbvV04eVb4VKf-gkKVJP4qcmI_bB7uCaI,449
|
|
22
|
-
vtool_ibeis/inspect_matches.py,sha256=T54ssQuoXNP2SRZDSiAjbz--1S_Fug1OxPCSBsXJMns,13155
|
|
23
|
-
vtool_ibeis/keypoint.py,sha256=t3_jnd1m5XCzb75FCbiitBSuKsV2SMcTAXx2LxmSAVI,81177
|
|
24
|
-
vtool_ibeis/linalg.py,sha256=rvmTaPOSYqNnhcK5XG8_QthdfklsTACjWtEpYYaa55I,21111
|
|
25
|
-
vtool_ibeis/matching.py,sha256=6NuQIEFve6cj3a8PyCaug85zwtUbSNrDZTYRQSc9Ynk,73427
|
|
26
|
-
vtool_ibeis/nearest_neighbors.py,sha256=OASCgSbLGoKHN-HcH7piAL4OSA0FVj41RM9MnH5oqg8,29606
|
|
27
|
-
vtool_ibeis/numpy_utils.py,sha256=uCJk_Dgkyt8hAoHz2T2QEsXGG4yoVtZXqeZ9T9ocBCw,11689
|
|
28
|
-
vtool_ibeis/other.py,sha256=qtOGrFLXOud2emPaBkNxiTj4-06zj6u7FlVhJ7jRCCk,88733
|
|
29
|
-
vtool_ibeis/patch.py,sha256=0giTmEssE3rUG76mxhpEGGaY7TSqWtjuqDBA-ciSsWc,54760
|
|
30
|
-
vtool_ibeis/quality_classifier.py,sha256=jLpjs-XXK4X1fyuv4fokioqLUtAmkBZyeFpByXXg9RA,6188
|
|
31
|
-
vtool_ibeis/score_normalization.py,sha256=yyfMe9aSDGCLd5TZ_fdrLvG_xijlDR5Qth2duYJs_Lw,68619
|
|
32
|
-
vtool_ibeis/segmentation.py,sha256=ASjPn4uCRoqTO-1I-04Cz-U1rQMn-2KhcBPbbqFGF8k,10210
|
|
33
|
-
vtool_ibeis/spatial_verification.py,sha256=RIG-wpd3rKI7rVgD_MBN-lzXdoMjr-WLljLna1bKUnM,47898
|
|
34
|
-
vtool_ibeis/sver_c_wrapper.py,sha256=_kRO-_3BKaQjp4rQ87eLAQp0a-8b1xCFUs_m8plfEIE,3728
|
|
35
|
-
vtool_ibeis/symbolic.py,sha256=kYgTlAzXrRA_CmUv1r3oJh4gIDswycVfJfLxPwBkDaM,6227
|
|
36
|
-
vtool_ibeis/trig.py,sha256=INkvGk38OpD3q_eFbS7t28Rve__MF5OJlfwkH_3JMyM,739
|
|
37
|
-
vtool_ibeis/util_math.py,sha256=M3lsP0tOSJZEI_BzWgiQD1tFdiU6KgWBCP6S8KX5qLA,24177
|
|
38
|
-
vtool_ibeis-2.2.1.dist-info/LICENSE,sha256=nX9nxF55JDXothg0bqH3MQdENAzi_PluJRXvQ1D844Q,11341
|
|
39
|
-
vtool_ibeis-2.2.1.dist-info/METADATA,sha256=ORkUnd6K2uYb63FfJ_hR8V4ilbeTVOmnLreYE-LDlNo,39193
|
|
40
|
-
vtool_ibeis-2.2.1.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
41
|
-
vtool_ibeis-2.2.1.dist-info/top_level.txt,sha256=ioCLlRKegmLWJf7B4k2o4JZCTAI7Eb61FpE5mO720bM,12
|
|
42
|
-
vtool_ibeis-2.2.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|