imops 0.8.8__cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.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.
- _build_utils.py +113 -0
- imops/__init__.py +10 -0
- imops/__version__.py +1 -0
- imops/_configs.py +29 -0
- imops/backend.py +95 -0
- imops/box.py +74 -0
- imops/cpp/cpp_modules.cpython-312-x86_64-linux-gnu.so +0 -0
- imops/cpp/interp2d/delaunator/delaunator-header-only.hpp +33 -0
- imops/cpp/interp2d/delaunator/delaunator.cpp +645 -0
- imops/cpp/interp2d/delaunator/delaunator.hpp +170 -0
- imops/cpp/interp2d/interpolator.h +52 -0
- imops/cpp/interp2d/triangulator.h +198 -0
- imops/cpp/interp2d/utils.h +63 -0
- imops/cpp/main.cpp +13 -0
- imops/crop.py +120 -0
- imops/interp1d.py +207 -0
- imops/interp2d.py +120 -0
- imops/measure.py +228 -0
- imops/morphology.py +525 -0
- imops/numeric.py +384 -0
- imops/pad.py +253 -0
- imops/py.typed +0 -0
- imops/radon.py +247 -0
- imops/src/__init__.py +0 -0
- imops/src/_backprojection.c +27339 -0
- imops/src/_backprojection.cpython-312-x86_64-linux-gnu.so +0 -0
- imops/src/_fast_backprojection.c +27374 -0
- imops/src/_fast_backprojection.cpython-312-x86_64-linux-gnu.so +0 -0
- imops/src/_fast_measure.c +33845 -0
- imops/src/_fast_measure.cpython-312-x86_64-linux-gnu.so +0 -0
- imops/src/_fast_morphology.c +26124 -0
- imops/src/_fast_morphology.cpython-312-x86_64-linux-gnu.so +0 -0
- imops/src/_fast_numeric.c +48686 -0
- imops/src/_fast_numeric.cpython-312-x86_64-linux-gnu.so +0 -0
- imops/src/_fast_radon.c +30749 -0
- imops/src/_fast_radon.cpython-312-x86_64-linux-gnu.so +0 -0
- imops/src/_fast_zoom.c +57238 -0
- imops/src/_fast_zoom.cpython-312-x86_64-linux-gnu.so +0 -0
- imops/src/_measure.c +33810 -0
- imops/src/_measure.cpython-312-x86_64-linux-gnu.so +0 -0
- imops/src/_morphology.c +26089 -0
- imops/src/_morphology.cpython-312-x86_64-linux-gnu.so +0 -0
- imops/src/_numba_zoom.py +503 -0
- imops/src/_numeric.c +48651 -0
- imops/src/_numeric.cpython-312-x86_64-linux-gnu.so +0 -0
- imops/src/_radon.c +30714 -0
- imops/src/_radon.cpython-312-x86_64-linux-gnu.so +0 -0
- imops/src/_zoom.c +57203 -0
- imops/src/_zoom.cpython-312-x86_64-linux-gnu.so +0 -0
- imops/testing.py +57 -0
- imops/utils.py +205 -0
- imops/zoom.py +297 -0
- imops-0.8.8.dist-info/LICENSE +21 -0
- imops-0.8.8.dist-info/METADATA +218 -0
- imops-0.8.8.dist-info/RECORD +58 -0
- imops-0.8.8.dist-info/WHEEL +6 -0
- imops-0.8.8.dist-info/top_level.txt +2 -0
- imops.libs/libgomp-a34b3233.so.1.0.0 +0 -0
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: imops
|
|
3
|
+
Version: 0.8.8
|
|
4
|
+
Summary: Efficient parallelizable algorithms for multidimensional arrays to speed up your data pipelines
|
|
5
|
+
Home-page: https://github.com/neuro-ml/imops
|
|
6
|
+
Download-URL: https://github.com/neuro-ml/imops/archive/v0.8.8.tar.gz
|
|
7
|
+
Author: maxme1, vovaf709, talgat, alexeybelkov
|
|
8
|
+
Author-email: maxme1 <max@aumi.ai>, vovaf709 <vovaf709@yandex.ru>, talgat <saparov2130@gmail.com>, alexeybelkov <fpmbelkov@gmail.com>
|
|
9
|
+
License: MIT License
|
|
10
|
+
|
|
11
|
+
Copyright (c) 2022 NeuroML
|
|
12
|
+
|
|
13
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
14
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
15
|
+
in the Software without restriction, including without limitation the rights
|
|
16
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
17
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
18
|
+
furnished to do so, subject to the following conditions:
|
|
19
|
+
|
|
20
|
+
The above copyright notice and this permission notice shall be included in all
|
|
21
|
+
copies or substantial portions of the Software.
|
|
22
|
+
|
|
23
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
25
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
26
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
27
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
28
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
29
|
+
SOFTWARE.
|
|
30
|
+
|
|
31
|
+
Project-URL: Homepage, https://github.com/neuro-ml/imops
|
|
32
|
+
Project-URL: Issues, https://github.com/neuro-ml/imops/issues
|
|
33
|
+
Project-URL: Source, https://github.com/neuro-ml/imops
|
|
34
|
+
Project-URL: Docs, https://neuro-ml.github.io/imops
|
|
35
|
+
Keywords: image processing,fast,ndarray,data pipelines
|
|
36
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
37
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
38
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
39
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
40
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
41
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
42
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
43
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
44
|
+
Requires-Python: >=3.7
|
|
45
|
+
Description-Content-Type: text/markdown
|
|
46
|
+
License-File: LICENSE
|
|
47
|
+
Requires-Dist: scipy <2.0.0,>=1.0
|
|
48
|
+
Requires-Dist: scikit-image
|
|
49
|
+
Requires-Dist: connected-components-3d
|
|
50
|
+
Requires-Dist: fastremap
|
|
51
|
+
Requires-Dist: edt <3.0.0,>=2.0.0
|
|
52
|
+
Requires-Dist: dataclasses ; python_version < "3.7"
|
|
53
|
+
Requires-Dist: numpy <2.0.0,>=1.7 ; python_version < "3.8"
|
|
54
|
+
Requires-Dist: numpy <2.0.0,>=1.22 ; python_version >= "3.8"
|
|
55
|
+
Provides-Extra: all
|
|
56
|
+
Requires-Dist: numba ; extra == 'all'
|
|
57
|
+
Provides-Extra: numba
|
|
58
|
+
Requires-Dist: numba ; extra == 'numba'
|
|
59
|
+
|
|
60
|
+
[](https://codecov.io/gh/neuro-ml/imops)
|
|
61
|
+
[](https://pypi.org/project/imops/)
|
|
62
|
+

|
|
63
|
+
[](https://pypi.org/project/imops/)
|
|
64
|
+
|
|
65
|
+
# Imops
|
|
66
|
+
|
|
67
|
+
Efficient parallelizable algorithms for multidimensional arrays to speed up your data pipelines.
|
|
68
|
+
- [Documentation](https://neuro-ml.github.io/imops/)
|
|
69
|
+
- [Benchmarks](https://neuro-ml.github.io/imops/benchmarks/)
|
|
70
|
+
|
|
71
|
+
# Install
|
|
72
|
+
|
|
73
|
+
```shell
|
|
74
|
+
pip install imops # default install with Cython backend
|
|
75
|
+
pip install imops[numba] # additionally install Numba backend
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
# How fast is it?
|
|
79
|
+
|
|
80
|
+
Time comparisons (ms) for Intel(R) Xeon(R) Silver 4114 CPU @ 2.20GHz using 8 threads. All inputs are C-contiguous NumPy arrays. For morphology functions `bool` dtype is used and `float64` for all others.
|
|
81
|
+
| function / backend | Scipy() | Cython(fast=False) | Cython(fast=True) | Numba() |
|
|
82
|
+
|:----------------------:|:-----------:|:----------------------:|:---------------------:|:-----------:|
|
|
83
|
+
| `zoom(..., order=0)` | 2072 | 1114 | **867** | 3590 |
|
|
84
|
+
| `zoom(..., order=1)` | 6527 | 596 | **575** | 3757 |
|
|
85
|
+
| `interp1d` | 780 | 149 | **146** | 420 |
|
|
86
|
+
| `radon` | 59711 | 5982 | **4837** | - |
|
|
87
|
+
| `inverse_radon` | 52928 | 8254 | **6535** | - |
|
|
88
|
+
| `binary_dilation` | 2207 | 310 | **298** | - |
|
|
89
|
+
| `binary_erosion` | 2296 | 326 | **304** | - |
|
|
90
|
+
| `binary_closing` | 4158 | 544 | **469** | - |
|
|
91
|
+
| `binary_opening` | 4410 | 567 | **522** | - |
|
|
92
|
+
| `center_of_mass` | 2237 | **64** | **64** | - |
|
|
93
|
+
|
|
94
|
+
We use [`airspeed velocity`](https://asv.readthedocs.io/en/stable/) to benchmark our code. For detailed results visit [benchmark page](https://neuro-ml.github.io/imops/benchmarks/).
|
|
95
|
+
|
|
96
|
+
# Features
|
|
97
|
+
|
|
98
|
+
### Fast Radon transform
|
|
99
|
+
|
|
100
|
+
```python
|
|
101
|
+
from imops import radon, inverse_radon
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
### Fast 0/1-order zoom
|
|
105
|
+
|
|
106
|
+
```python
|
|
107
|
+
from imops import zoom, zoom_to_shape
|
|
108
|
+
|
|
109
|
+
# fast zoom with optional fallback to scipy's implementation
|
|
110
|
+
y = zoom(x, 2, axis=[0, 1])
|
|
111
|
+
# a handy function to zoom the array to a given shape
|
|
112
|
+
# without the need to compute the scale factor
|
|
113
|
+
z = zoom_to_shape(x, (4, 120, 67))
|
|
114
|
+
```
|
|
115
|
+
Works faster only for `ndim<=4, dtype=float32 or float64 (and bool-int16-32-64-uint8-16-32 if order == 0), output=None, order=0 or 1, mode='constant', grid_mode=False`
|
|
116
|
+
### Fast 1d linear interpolation
|
|
117
|
+
|
|
118
|
+
```python
|
|
119
|
+
from imops import interp1d # same as `scipy.interpolate.interp1d`
|
|
120
|
+
```
|
|
121
|
+
Works faster only for `ndim<=3, dtype=float32 or float64, order=1`
|
|
122
|
+
|
|
123
|
+
### Fast 2d linear interpolation
|
|
124
|
+
```python
|
|
125
|
+
import numpy as np
|
|
126
|
+
from imops.interp2d import Linear2DInterpolator
|
|
127
|
+
n, m = 1024, 2
|
|
128
|
+
points = np.random.randint(low=0, high=1024, size=(n, m))
|
|
129
|
+
points = np.unique(points, axis=0)
|
|
130
|
+
x_points = points[: n // 2]
|
|
131
|
+
values = np.random.uniform(low=0.0, high=1.0, size=(len(x_points),))
|
|
132
|
+
interp_points = points[n // 2:]
|
|
133
|
+
num_threads = -1 # will be equal to num of CPU cores
|
|
134
|
+
# You can optionally pass your own triangulation as an np.array of shape [num_triangles, 3], element at (i, j) position is an index of a point from x_points
|
|
135
|
+
interpolator = Linear2DInterpolator(x_points, values, num_threads=num_threads, triangles=None)
|
|
136
|
+
# Also you can pass values to __call__ and rewrite the ones that were passed to __init__
|
|
137
|
+
interp_values = interpolator(interp_points, values + 1.0, fill_value=0.0)
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
### Fast binary morphology
|
|
141
|
+
|
|
142
|
+
```python
|
|
143
|
+
from imops import binary_dilation, binary_erosion, binary_opening, binary_closing
|
|
144
|
+
```
|
|
145
|
+
These functions mimic `scikit-image` counterparts
|
|
146
|
+
### Padding
|
|
147
|
+
|
|
148
|
+
```python
|
|
149
|
+
from imops import pad, pad_to_shape
|
|
150
|
+
|
|
151
|
+
y = pad(x, 10, axis=[0, 1])
|
|
152
|
+
# `ratio` controls how much padding is applied to left side:
|
|
153
|
+
# 0 - pad from right
|
|
154
|
+
# 1 - pad from left
|
|
155
|
+
# 0.5 - distribute the padding equally
|
|
156
|
+
z = pad_to_shape(x, (4, 120, 67), ratio=0.25)
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
### Cropping
|
|
160
|
+
|
|
161
|
+
```python
|
|
162
|
+
from imops import crop_to_shape
|
|
163
|
+
|
|
164
|
+
# `ratio` controls the position of the crop
|
|
165
|
+
# 0 - crop from right
|
|
166
|
+
# 1 - crop from left
|
|
167
|
+
# 0.5 - crop from the middle
|
|
168
|
+
z = crop_to_shape(x, (4, 120, 67), ratio=0.25)
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
### Labeling
|
|
172
|
+
|
|
173
|
+
```python
|
|
174
|
+
from imops import label
|
|
175
|
+
|
|
176
|
+
# same as `skimage.measure.label`
|
|
177
|
+
labeled, num_components = label(x, background=1, return_num=True)
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
# Backends
|
|
181
|
+
For all heavy image routines except `label` you can specify which backend to use. Backend can be specified by a string or by an instance of `Backend` class. The latter allows you to customize some backend options:
|
|
182
|
+
```python
|
|
183
|
+
from imops import Cython, Numba, Scipy, zoom
|
|
184
|
+
|
|
185
|
+
y = zoom(x, 2, backend='Cython')
|
|
186
|
+
y = zoom(x, 2, backend=Cython(fast=False)) # same as previous
|
|
187
|
+
y = zoom(x, 2, backend=Cython(fast=True)) # -ffast-math compiled cython backend
|
|
188
|
+
y = zoom(x, 2, backend=Scipy()) # use scipy original implementation
|
|
189
|
+
y = zoom(x, 2, backend='Numba')
|
|
190
|
+
y = zoom(x, 2, backend=Numba(parallel=True, nogil=True, cache=True)) # same as previous
|
|
191
|
+
```
|
|
192
|
+
Also backend can be specified globally or locally:
|
|
193
|
+
```python
|
|
194
|
+
from imops import imops_backend, set_backend, zoom
|
|
195
|
+
|
|
196
|
+
set_backend('Numba') # sets Numba as default backend
|
|
197
|
+
with imops_backend('Cython'): # sets Cython backend via context manager
|
|
198
|
+
zoom(x, 2)
|
|
199
|
+
```
|
|
200
|
+
Note that for `Numba` backend setting `num_threads` argument has no effect for now and you should use `NUMBA_NUM_THREADS` environment variable.
|
|
201
|
+
Available backends:
|
|
202
|
+
| function / backend | Scipy | Cython | Numba |
|
|
203
|
+
|:-------------------:|:---------:|:---------:|:---------:|
|
|
204
|
+
| `zoom` | ✓ | ✓ | ✓ |
|
|
205
|
+
| `interp1d` | ✓ | ✓ | ✓ |
|
|
206
|
+
| `radon` | ✗ | ✓ | ✗ |
|
|
207
|
+
| `inverse_radon` | ✗ | ✓ | ✗ |
|
|
208
|
+
| `binary_dilation` | ✓ | ✓ | ✗ |
|
|
209
|
+
| `binary_erosion` | ✓ | ✓ | ✗ |
|
|
210
|
+
| `binary_closing` | ✓ | ✓ | ✗ |
|
|
211
|
+
| `binary_opening` | ✓ | ✓ | ✗ |
|
|
212
|
+
| `center_of_mass` | ✓ | ✓ | ✗ |
|
|
213
|
+
|
|
214
|
+
# Acknowledgements
|
|
215
|
+
|
|
216
|
+
Some parts of our code for radon/inverse radon transform as well as the code for linear interpolation are inspired by
|
|
217
|
+
the implementations from [`scikit-image`](https://github.com/scikit-image/scikit-image) and [`scipy`](https://github.com/scipy/scipy).
|
|
218
|
+
Also we used [`fastremap`](https://github.com/seung-lab/fastremap), [`edt`](https://github.com/seung-lab/euclidean-distance-transform-3d) and [`cc3d`](https://github.com/seung-lab/connected-components-3d) out of the box.
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
_build_utils.py,sha256=3IXWMy_HdvyR_gEjWf-xISVc3xIb8JhXiaKPWTJWxlQ,4011
|
|
2
|
+
imops.libs/libgomp-a34b3233.so.1.0.0,sha256=On6uznIxkRvi-7Gz58tMtcLg-E4MK7c3OUcrWh_uyME,168193
|
|
3
|
+
imops-0.8.8.dist-info/WHEEL,sha256=OvtvnbpcaxHa5TgXgfC48E6JA7zLr7svMspPP7Vk5o8,152
|
|
4
|
+
imops-0.8.8.dist-info/LICENSE,sha256=s4td51soCfOr_HP5fF2gTARksncu_DD1TgugcUGTBQ0,1064
|
|
5
|
+
imops-0.8.8.dist-info/top_level.txt,sha256=jd2uO-zsYvKeqkZbjEjtkGqCca0IEXEiEuoyr3nsHB0,19
|
|
6
|
+
imops-0.8.8.dist-info/RECORD,,
|
|
7
|
+
imops-0.8.8.dist-info/METADATA,sha256=M3BTDg7yRx0bQZAyoWNLXm14rYY8iES7h7Zy8I7F9Lw,9832
|
|
8
|
+
imops/interp1d.py,sha256=DYIB58dezdctM6DWRD7repFCgc4zmT9Z1foRLsPfOWQ,8189
|
|
9
|
+
imops/testing.py,sha256=-koeiCQovlwf2HZ0egvX4rb1rCpn19pcFZlfd4ygcnc,1614
|
|
10
|
+
imops/pad.py,sha256=0-r5ho9Ok1veRnd6-8IPHD-GtysIMfxvRN34bCHvyHU,9109
|
|
11
|
+
imops/__init__.py,sha256=FUVB4d2PQlM4PJUSIjyz9oRlWaqU6RSskyyrX56-RrY,504
|
|
12
|
+
imops/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
+
imops/crop.py,sha256=pSCW-bl6RhowtunqEyYVJZF8NNXhlwHWIM8aF6jsZcE,4136
|
|
14
|
+
imops/radon.py,sha256=CHv1SA5RfZm4_4m9ktQoWaW78e0UTKroqgb_BJ6qlWI,8988
|
|
15
|
+
imops/numeric.py,sha256=r8D91GWRd4JSg8I3PsWyi5qinulhR-NIg54Ot03padQ,13333
|
|
16
|
+
imops/box.py,sha256=9gixhLJ3nYhap81UuJKx07cD6xpQ8dS0FkMEsJl8bq8,1870
|
|
17
|
+
imops/morphology.py,sha256=Wcee1d1U8Csk2Dl35vcakBQcPRYz2KEeiYWI0LkO3gk,18581
|
|
18
|
+
imops/__version__.py,sha256=ysM7ZSdOuCpaNFiqoGIRai1zq8iwLDlTTCvJsGJ1_eA,22
|
|
19
|
+
imops/measure.py,sha256=FoEkeKc7nvevc4kSEKfObQ8pyiMYEXp5t7viMcUxI0Q,8457
|
|
20
|
+
imops/interp2d.py,sha256=zvDimvUBQv6aS7ayGEQoXdTKJ45hJTyqJrxyFcEnFRA,4452
|
|
21
|
+
imops/zoom.py,sha256=Kzc0ER2KbuHb3xCWMoQCrrjvAeW0pulDZVY7WA2tT7E,9792
|
|
22
|
+
imops/utils.py,sha256=iYsfBhDXnEd70RKozgNbgrbclqfaWvmxqXKRWxRwdUc,6703
|
|
23
|
+
imops/_configs.py,sha256=PoPlwnmmCz-Z8GmKYIqR8xsqcWHPKiYSGWldbQX9GU0,705
|
|
24
|
+
imops/backend.py,sha256=9kJtdd4-66SOP7MEXF-o9-aFImLtvpaqTKe1ttNb0hk,2503
|
|
25
|
+
imops/cpp/cpp_modules.cpython-312-x86_64-linux-gnu.so,sha256=bpCz9ut_7klK4NkuzYn5dKnf_Lg_dpibdwRQvZQpBnI,4951769
|
|
26
|
+
imops/cpp/main.cpp,sha256=ykugzMnwuZSiYn3zHjNGQHWVcr0Nf2qN85TFNj3RFEg,409
|
|
27
|
+
imops/cpp/interp2d/triangulator.h,sha256=PPNy0Jk2xNnpLZaZ1qoEGxFOGhV7jljMGZ6yGY6Ptjg,7496
|
|
28
|
+
imops/cpp/interp2d/utils.h,sha256=P2eTPtG13mL6hGw6sk8RlbjDUk5Y6OMElgjkVOaJh6Q,2153
|
|
29
|
+
imops/cpp/interp2d/interpolator.h,sha256=Ot8tGa-Fr-qzCSGnXYWHBTNNFIbfqAivs9Sl6V0Asm0,2350
|
|
30
|
+
imops/cpp/interp2d/delaunator/delaunator.cpp,sha256=O_Y-g8Q3QbKJDmZRGDqtZMezZuLJMHY3PRboQ0E6aEs,19588
|
|
31
|
+
imops/cpp/interp2d/delaunator/delaunator-header-only.hpp,sha256=i-_ywMT72biNMds6_ZV3ZrI-IE2Q6eiGiwMWkMpET7U,1260
|
|
32
|
+
imops/cpp/interp2d/delaunator/delaunator.hpp,sha256=5AapHrvOZxDD3acbIr5OrS2RC7b9v5L_rqxu0N-jYb4,4724
|
|
33
|
+
imops/src/_measure.cpython-312-x86_64-linux-gnu.so,sha256=Yl4uEuAcGZa8hR7912Svp0jWAEwG7lBXh_3l7DXXgkA,2297625
|
|
34
|
+
imops/src/_backprojection.c,sha256=UyPJpy2a5KZvTxJJnrDBB17Xr4s5ulv869JdFZsSHMo,1033252
|
|
35
|
+
imops/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
+
imops/src/_fast_measure.c,sha256=CPWtlrItw4a3msEj84NnkuPrmcNcNGj7YvOZG8BPLjA,1335614
|
|
37
|
+
imops/src/_numba_zoom.py,sha256=NH1u-64xExw0b_l6GQJ7ICOoWVsGOH8ztuS1LFvsiz0,16354
|
|
38
|
+
imops/src/_zoom.cpython-312-x86_64-linux-gnu.so,sha256=A43wDYuxq8gZPookG9WoTG1qEXiSSDRcao42TlNi4MQ,4427489
|
|
39
|
+
imops/src/_fast_measure.cpython-312-x86_64-linux-gnu.so,sha256=uQbWTaAoi9k1VLsMgNhMPyl4R56oQtPqsnXLReGa5V4,2297633
|
|
40
|
+
imops/src/_fast_numeric.cpython-312-x86_64-linux-gnu.so,sha256=7SBHXjRQN8qxGTB7zICnvgldhj7lLzNjpwWKCrhFT3w,3696441
|
|
41
|
+
imops/src/_zoom.c,sha256=awVmRLERchuLo-50KrmN_bhGXYDB8YZUf2GU1G0EgUA,2380754
|
|
42
|
+
imops/src/_fast_morphology.cpython-312-x86_64-linux-gnu.so,sha256=k1iL8WrNaSrgeA2C1ZSR0UwbHsG_guOUijapJswOUmg,1441249
|
|
43
|
+
imops/src/_fast_numeric.c,sha256=zvW2Gtkjj630HOpA3ILvm8ml-ZLyMc8P8mTMgzmazIo,2106393
|
|
44
|
+
imops/src/_measure.c,sha256=p9NEr20WnRvWSJhZh9JS0WH1gwvXvLfdWLEOKEDwISc,1332239
|
|
45
|
+
imops/src/_morphology.cpython-312-x86_64-linux-gnu.so,sha256=jJAERIbKnqu2lWIQIo6PeNu2KzzZohwN3EFGd5MaymQ,1441241
|
|
46
|
+
imops/src/_fast_zoom.c,sha256=lrE8q8NNi3TzgdMn8K2s-8uu968UqUCHiMbZzq18vck,2393159
|
|
47
|
+
imops/src/_fast_backprojection.cpython-312-x86_64-linux-gnu.so,sha256=jqLGXOzY9glgKkpdBm0vo3btlNqGJ8xON30gleqjYrc,1761033
|
|
48
|
+
imops/src/_fast_zoom.cpython-312-x86_64-linux-gnu.so,sha256=heMRHGZCFAtdNHG5Qhb2xshrRKt_OMjM5jaj-uFtymM,4427497
|
|
49
|
+
imops/src/_fast_radon.c,sha256=d3Trvl4iowrTKMWW1kqLojYVOKelqBZO5Rac76YrUdE,1189327
|
|
50
|
+
imops/src/_numeric.c,sha256=uVZ4BGBqja3XJ7JMBXVUFALdB2FAahhmJa_bxFvie0w,2099050
|
|
51
|
+
imops/src/_fast_backprojection.c,sha256=3sDluZNsZL10u-BZ2nKOQ2-ntvKMvsVzDGd1eFM2hbI,1035336
|
|
52
|
+
imops/src/_radon.c,sha256=8Q7gSjgLvYeZv250f0PHLPuEPBVKOfS_uffh55hnAj0,1186305
|
|
53
|
+
imops/src/_fast_morphology.c,sha256=fcZMkjD9KIrr17EwfJ3wWF1UlrIA6TWKnnErx1tyOMM,970857
|
|
54
|
+
imops/src/_numeric.cpython-312-x86_64-linux-gnu.so,sha256=NGmzE_3JNOklRey-wJj03mMWVL0mAsPfmD6Zdx2UVBM,3696433
|
|
55
|
+
imops/src/_fast_radon.cpython-312-x86_64-linux-gnu.so,sha256=1kXKNeghUv-sVDv-ougS3ZmEhhcrxGJTREH1IgSBN2c,2141945
|
|
56
|
+
imops/src/_backprojection.cpython-312-x86_64-linux-gnu.so,sha256=As6x_wsQ5H0RcruMs3EGcDZfg_LSZHGARBnCFXLGJ54,1761017
|
|
57
|
+
imops/src/_radon.cpython-312-x86_64-linux-gnu.so,sha256=GAJfGXm9f9zJWpjx-DzSCqpjPtKUf8woaa5588dav1Q,2137841
|
|
58
|
+
imops/src/_morphology.c,sha256=USc9fDuYR94FXSMXV6ZUIwaTzTCpfeJ_DG93Esg8Ol8,968231
|
|
Binary file
|