nabu 2025.1.0.dev5__py3-none-any.whl → 2025.1.0.dev13__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.
- nabu/__init__.py +1 -1
- nabu/app/double_flatfield.py +18 -5
- nabu/app/multicor.py +25 -10
- nabu/app/reconstruct_helical.py +4 -4
- nabu/app/stitching.py +7 -2
- nabu/cuda/src/backproj.cu +10 -10
- nabu/cuda/src/cone.cu +4 -0
- nabu/cuda/utils.py +1 -1
- nabu/estimation/cor.py +3 -3
- nabu/io/cast_volume.py +16 -0
- nabu/io/reader.py +3 -2
- nabu/opencl/src/backproj.cl +10 -10
- nabu/pipeline/estimators.py +6 -6
- nabu/pipeline/fullfield/chunked.py +13 -13
- nabu/pipeline/fullfield/computations.py +4 -1
- nabu/pipeline/fullfield/get_double_flatfield.py +147 -0
- nabu/pipeline/fullfield/nabu_config.py +16 -4
- nabu/pipeline/fullfield/processconfig.py +25 -4
- nabu/pipeline/fullfield/reconstruction.py +9 -4
- nabu/pipeline/helical/gridded_accumulator.py +1 -1
- nabu/pipeline/helical/helical_reconstruction.py +2 -2
- nabu/pipeline/helical/nabu_config.py +1 -1
- nabu/pipeline/helical/weight_balancer.py +1 -1
- nabu/pipeline/params.py +8 -3
- nabu/preproc/shift.py +1 -1
- nabu/preproc/tests/test_ctf.py +1 -1
- nabu/preproc/tests/test_paganin.py +1 -3
- nabu/processing/fft_base.py +6 -2
- nabu/processing/fft_cuda.py +17 -167
- nabu/processing/fft_opencl.py +19 -2
- nabu/processing/padding_cuda.py +0 -1
- nabu/processing/processing_base.py +11 -5
- nabu/processing/tests/test_fft.py +1 -63
- nabu/reconstruction/cone.py +39 -9
- nabu/reconstruction/fbp.py +7 -0
- nabu/reconstruction/fbp_base.py +8 -0
- nabu/reconstruction/filtering.py +59 -25
- nabu/reconstruction/filtering_cuda.py +21 -20
- nabu/reconstruction/filtering_opencl.py +8 -14
- nabu/reconstruction/hbp.py +10 -10
- nabu/reconstruction/mlem.py +3 -0
- nabu/reconstruction/rings_cuda.py +41 -13
- nabu/reconstruction/tests/test_cone.py +35 -0
- nabu/reconstruction/tests/test_deringer.py +2 -2
- nabu/reconstruction/tests/test_fbp.py +35 -14
- nabu/reconstruction/tests/test_filtering.py +14 -5
- nabu/reconstruction/tests/test_halftomo.py +1 -1
- nabu/reconstruction/tests/test_reconstructor.py +1 -1
- nabu/resources/dataset_analyzer.py +34 -2
- nabu/resources/tests/test_extract.py +4 -2
- nabu/stitching/config.py +6 -1
- nabu/stitching/stitcher/dumper/__init__.py +1 -0
- nabu/stitching/stitcher/dumper/postprocessing.py +105 -1
- nabu/stitching/stitcher/post_processing.py +14 -4
- nabu/stitching/stitcher/pre_processing.py +1 -1
- nabu/stitching/stitcher/single_axis.py +8 -7
- nabu/stitching/stitcher/z_stitcher.py +8 -4
- nabu/stitching/utils/utils.py +2 -2
- nabu/testutils.py +2 -2
- nabu/utils.py +9 -2
- {nabu-2025.1.0.dev5.dist-info → nabu-2025.1.0.dev13.dist-info}/METADATA +9 -28
- {nabu-2025.1.0.dev5.dist-info → nabu-2025.1.0.dev13.dist-info}/RECORD +66 -65
- {nabu-2025.1.0.dev5.dist-info → nabu-2025.1.0.dev13.dist-info}/WHEEL +1 -1
- {nabu-2025.1.0.dev5.dist-info → nabu-2025.1.0.dev13.dist-info}/entry_points.txt +0 -0
- {nabu-2025.1.0.dev5.dist-info → nabu-2025.1.0.dev13.dist-info/licenses}/LICENSE +0 -0
- {nabu-2025.1.0.dev5.dist-info → nabu-2025.1.0.dev13.dist-info}/top_level.txt +0 -0
@@ -1,31 +1,10 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: nabu
|
3
|
-
Version: 2025.1.0.
|
3
|
+
Version: 2025.1.0.dev13
|
4
4
|
Summary: Nabu - Tomography software
|
5
5
|
Author-email: Pierre Paleo <pierre.paleo@esrf.fr>, Henri Payno <henri.payno@esrf.fr>, Alessandro Mirone <mirone@esrf.fr>, Jérôme Lesaint <jerome.lesaint@esrf.fr>
|
6
6
|
Maintainer-email: Pierre Paleo <pierre.paleo@esrf.fr>
|
7
|
-
License: MIT
|
8
|
-
|
9
|
-
Copyright (c) 2020-2024 ESRF
|
10
|
-
|
11
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
12
|
-
of this software and associated documentation files (the "Software"), to deal
|
13
|
-
in the Software without restriction, including without limitation the rights
|
14
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
15
|
-
copies of the Software, and to permit persons to whom the Software is
|
16
|
-
furnished to do so, subject to the following conditions:
|
17
|
-
|
18
|
-
The above copyright notice and this permission notice shall be included in all
|
19
|
-
copies or substantial portions of the Software.
|
20
|
-
|
21
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
22
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
23
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
24
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
25
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
26
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
27
|
-
SOFTWARE.
|
28
|
-
|
7
|
+
License-Expression: MIT
|
29
8
|
Project-URL: Homepage, https://gitlab.esrf.fr/tomotools/nabu
|
30
9
|
Project-URL: Documentation, http://www.silx.org/pub/nabu/doc
|
31
10
|
Project-URL: Repository, https://gitlab.esrf.fr/tomotools/nabu/-/releases
|
@@ -35,25 +14,26 @@ Classifier: Development Status :: 5 - Production/Stable
|
|
35
14
|
Classifier: Intended Audience :: Developers
|
36
15
|
Classifier: Intended Audience :: Science/Research
|
37
16
|
Classifier: Programming Language :: Python :: 3
|
38
|
-
Classifier: Programming Language :: Python :: 3.7
|
39
17
|
Classifier: Programming Language :: Python :: 3.8
|
40
18
|
Classifier: Programming Language :: Python :: 3.9
|
41
19
|
Classifier: Programming Language :: Python :: 3.10
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
42
23
|
Classifier: Environment :: Console
|
43
|
-
Classifier: License :: OSI Approved :: MIT License
|
44
24
|
Classifier: Operating System :: Unix
|
45
25
|
Classifier: Operating System :: MacOS :: MacOS X
|
46
26
|
Classifier: Operating System :: POSIX
|
47
27
|
Classifier: Topic :: Scientific/Engineering :: Physics
|
48
28
|
Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
|
49
|
-
Requires-Python: >=3.
|
29
|
+
Requires-Python: >=3.8
|
50
30
|
Description-Content-Type: text/markdown
|
51
31
|
License-File: LICENSE
|
52
32
|
Requires-Dist: numpy>1.9.0
|
53
33
|
Requires-Dist: scipy
|
54
34
|
Requires-Dist: h5py>=3.0
|
55
35
|
Requires-Dist: silx>=0.15.0
|
56
|
-
Requires-Dist: tomoscan>=2.1.
|
36
|
+
Requires-Dist: tomoscan>=2.1.5
|
57
37
|
Requires-Dist: psutil
|
58
38
|
Requires-Dist: pytest
|
59
39
|
Requires-Dist: tifffile
|
@@ -77,6 +57,7 @@ Requires-Dist: sphinx; extra == "doc"
|
|
77
57
|
Requires-Dist: cloud_sptheme; extra == "doc"
|
78
58
|
Requires-Dist: myst-parser; extra == "doc"
|
79
59
|
Requires-Dist: nbsphinx; extra == "doc"
|
60
|
+
Dynamic: license-file
|
80
61
|
|
81
62
|
# Nabu
|
82
63
|
|
@@ -1,10 +1,10 @@
|
|
1
1
|
doc/conf.py,sha256=3xtCarCHrXPr50GbeRDuH-o3Jzojw7mpr7vpGfZPLAE,3787
|
2
2
|
doc/create_conf_doc.py,sha256=IVOdP70KvbW9WS_UQu3Iyd0YfS60E2fJ5IDtQ_s4cDw,1143
|
3
3
|
doc/get_mathjax.py,sha256=VIvKRCdDuF2VoY8JD3mSey9XX13AZMmwTJBHdt1tUs4,1012
|
4
|
-
nabu/__init__.py,sha256=
|
4
|
+
nabu/__init__.py,sha256=ArHDO8a36q5KpcPAtV9nZ2qBWX2x49EWkvGtd6goCII,276
|
5
5
|
nabu/tests.py,sha256=hOJD1GGxn_KE1bWMoxfjnjzI7d9JBUpoc9B2_tVFiEk,1370
|
6
|
-
nabu/testutils.py,sha256=
|
7
|
-
nabu/utils.py,sha256=
|
6
|
+
nabu/testutils.py,sha256=PmQVGkQmLjq1oX8C_rE8N5yceVNbUifPuNMiE6cQq7k,8667
|
7
|
+
nabu/utils.py,sha256=XFk8_sUupngl5g1aFEE7IL_AzL9eJUV_ikmjiGfJNDA,26727
|
8
8
|
nabu/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
nabu/app/bootstrap.py,sha256=3yLZJmrmQBmPJMBtE2ih2cspfqOy5T_UN2U8B3i_hkI,3266
|
10
10
|
nabu/app/bootstrap_stitching.py,sha256=wCKgugOQr6-lPMWEn4AYQeric0tCuRc9O-RnpBuTWAA,2230
|
@@ -16,19 +16,19 @@ nabu/app/correct_rot.py,sha256=rIgBZZ_q-WPTy0mH22_XUXSXYqmR9DQkKlgEw_ol1kI,1988
|
|
16
16
|
nabu/app/create_distortion_map_from_poly.py,sha256=aa-vE-ndB9PsuHwdHUW7-8jGz4BxvjC-bQDWHlPV0Kg,6193
|
17
17
|
nabu/app/diag_to_pix.py,sha256=KKIj4YrcvEc8Ey-_T3yvxeSKTfrY5o13ekteMQN_cr4,14987
|
18
18
|
nabu/app/diag_to_rot.py,sha256=tBaF1Oy0-bjCqkLFK-Bu_n74easzLlRkI_FTC1cAH2Q,16933
|
19
|
-
nabu/app/double_flatfield.py,sha256=
|
19
|
+
nabu/app/double_flatfield.py,sha256=1yquRUIHYXmrIg7NGHMDIXpkUCS_muEioUeqLyWf8PI,5641
|
20
20
|
nabu/app/generate_header.py,sha256=Voo-FAvwS_mU5gtDxyqpZnSpP_mlMSfd_6bEtgdi_tg,8919
|
21
21
|
nabu/app/histogram.py,sha256=gyLXKwFrU5WPQMkM1k8OdpIXSwGEEKC-f8RcTHKOho4,7930
|
22
|
-
nabu/app/multicor.py,sha256=
|
22
|
+
nabu/app/multicor.py,sha256=Q9sxHSaCmahhf9hFZxX2jlfhk0me4ORBnHYfEwLo2dY,4725
|
23
23
|
nabu/app/nx_z_splitter.py,sha256=p54jR-PAAw-AkGolM9fZE5lM2vbNLspCNCy5zBnJNP4,4976
|
24
24
|
nabu/app/parse_reconstruction_log.py,sha256=msOtA3xaqLZpISRqS0F9_SrkvbdvKNPE99tdWhPrkY0,4745
|
25
25
|
nabu/app/prepare_weights_double.py,sha256=jy78aP1UNKqSk82Wy6ZCkKjpYXxaGmlIj_vjB4SxS8A,5443
|
26
26
|
nabu/app/reconstruct.py,sha256=L5N6BnP8lUQbXGi4NtcAZQ7h-T8CbyiBBP6s1SlPqrg,5792
|
27
|
-
nabu/app/reconstruct_helical.py,sha256=
|
27
|
+
nabu/app/reconstruct_helical.py,sha256=cMjcc8IUGUtqAOfObsznLkcGm6Ev4ZoE_vJa--fDSNQ,4257
|
28
28
|
nabu/app/reduce_dark_flat.py,sha256=nJ67oRGRWRw3P5Q3oTdW17_SszVxwkNSiYUjTkZJQZA,6555
|
29
29
|
nabu/app/rotate.py,sha256=st9tPf9XSH_nYPivANbcvBwDcY3snH-fYXJhVh7Suh4,6503
|
30
30
|
nabu/app/shrink_dataset.py,sha256=P9dorO0Q-gPAWgSHyZi3XQp4jkMTJacDYzNvJY4oh98,3507
|
31
|
-
nabu/app/stitching.py,sha256=
|
31
|
+
nabu/app/stitching.py,sha256=WAcAAxWw9nTpajp273KylfRc-Rxw7HmyqzSLjJ4sWh4,4418
|
32
32
|
nabu/app/utils.py,sha256=XUBRWDmth4i3BZHd27rfarFAUP7OEcsMeVmDJ6T4EXA,1178
|
33
33
|
nabu/app/validator.py,sha256=rmSiMnp1PucJo4adsn7eQ-wVf1sFXA1qZFOOHDJPLVs,3338
|
34
34
|
nabu/app/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -40,12 +40,12 @@ nabu/cuda/kernel.py,sha256=8v0b9kGNZfTPt2-xRbwrwX363Tw38B0TvsvmtmEtcrw,3776
|
|
40
40
|
nabu/cuda/medfilt.py,sha256=0V_zx2FSKvOwTwhyFQ8YlkzES5OKKu4tBx-xZlkllNI,230
|
41
41
|
nabu/cuda/padding.py,sha256=x6lk6_SoHzruHbQZCdN-FTgE4JlN3hyrtm3k6wwANZM,230
|
42
42
|
nabu/cuda/processing.py,sha256=nefntcARa917yirZqe5c90yPXua_sGzVUtg6Fzc2Vu8,2655
|
43
|
-
nabu/cuda/utils.py,sha256=
|
43
|
+
nabu/cuda/utils.py,sha256=C-0-X3mWXgUzHrEKqX0hXpir1M5M6wx1Im-HdEVIYBc,9628
|
44
44
|
nabu/cuda/src/ElementOp.cu,sha256=PhebQQgeF0V7MDNzeYiRXIeNq3tE2PsBx00XhanBmvg,7188
|
45
|
-
nabu/cuda/src/backproj.cu,sha256=
|
45
|
+
nabu/cuda/src/backproj.cu,sha256=XPKiW4s72Rk3Uj_T96E6tPRLwna0Fe01087sFg1VmUw,6077
|
46
46
|
nabu/cuda/src/backproj_polar.cu,sha256=sZbtw3KMfN69XyubJQSSLC87d5IPOyzbPBoRSNC1Cek,1851
|
47
47
|
nabu/cuda/src/boundary.h,sha256=eQhfKZm-o0kj88BvkUwzqfqxYfRde4Tuj8AhQvRK16Y,2898
|
48
|
-
nabu/cuda/src/cone.cu,sha256=
|
48
|
+
nabu/cuda/src/cone.cu,sha256=BcW6eLhYVnJZ9WgyD8F35-fGtVeggFv01ZxuWkmCZ_g,3533
|
49
49
|
nabu/cuda/src/convolution.cu,sha256=O6r8qPpQjpaqnNivMRX0LK3dEACKk9xyNYO9u_JysU0,7353
|
50
50
|
nabu/cuda/src/dfi_fftshift.cu,sha256=ElgNXy8H14mff2hmyjxCq7CnFK_DSY2Z564QGytRO1o,2220
|
51
51
|
nabu/cuda/src/flatfield.cu,sha256=ZVVmEd-jcsK03VWv42uugYw6LeUnDEVY8qo_G07doHs,2058
|
@@ -64,7 +64,7 @@ nabu/cuda/src/transpose.cu,sha256=Enim7vLxTCFZbK3BmYdQ6ZatA_FLp6601VOSl8iGFjg,47
|
|
64
64
|
nabu/cuda/tests/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
65
65
|
nabu/estimation/__init__.py,sha256=HWE3ivArjlJx4FjFh2Q73VmpIyzod80KTmXvFo1AP1s,379
|
66
66
|
nabu/estimation/alignment.py,sha256=i7q6txkHDXuxusJ9bi6MlMVpOR8yv07LeWkKXGwqSz0,20839
|
67
|
-
nabu/estimation/cor.py,sha256=
|
67
|
+
nabu/estimation/cor.py,sha256=Hk3aRDoP5JRIWQO-mqZWtyb84Fy-Pe9hrYOKRQZoOws,50275
|
68
68
|
nabu/estimation/cor_sino.py,sha256=qN6y16UVqoDX696JYyn3iWXDxQo0FMcFTuGbT92BW_s,18959
|
69
69
|
nabu/estimation/distortion.py,sha256=DEXizQpgHBXmrhbQ0kuEchicxmiDgmU2qrh8bCgSezg,4701
|
70
70
|
nabu/estimation/focus.py,sha256=CdtMFk6Xt4qq1JwwKDmDcVCeVocz-mpV0saikO0B1mc,17995
|
@@ -78,9 +78,9 @@ nabu/estimation/tests/test_focus.py,sha256=cMxEeTLlfVHOvG_4oGMLpp6bVI6okYz0u4aNc
|
|
78
78
|
nabu/estimation/tests/test_tilt.py,sha256=KIgTJqQvNfWndm8f3aRSdznWFl3AdQhYXiZPKLseYOs,1672
|
79
79
|
nabu/estimation/tests/test_translation.py,sha256=RkOnCYgk9DZGKlIka1snqTv4wbIz_nG7-EHAxnBHsJU,2999
|
80
80
|
nabu/io/__init__.py,sha256=AbQgj4-fCCHOKynO_PyAR9ejnFSuWKgroxxhxWVpjyQ,120
|
81
|
-
nabu/io/cast_volume.py,sha256=
|
81
|
+
nabu/io/cast_volume.py,sha256=56HDNQ3mr7krylMGWW8aBXZ6d3FAGfKK-syppDv1P8k,17573
|
82
82
|
nabu/io/detector_distortion.py,sha256=qO1Z6gejkBrixThvU_sLwH3UfLAe8aAO63YQ8z7PH78,11750
|
83
|
-
nabu/io/reader.py,sha256=
|
83
|
+
nabu/io/reader.py,sha256=D5pOhOPadySvl7YkZmIIb9ZUJGpv5dITvb6r5RHZAkE,40525
|
84
84
|
nabu/io/reader_helical.py,sha256=q3LOmu6F_4Uxi3rZZWJ-rsix2Lgu_saXXdiJF8TLi24,4533
|
85
85
|
nabu/io/utils.py,sha256=iSeBhOIcLlKgiHXdDLfAdyvSrgdv6I5iQUcjT2gv_WQ,9303
|
86
86
|
nabu/io/writer.py,sha256=0bZ2X0hvT-r_2Uu2u3fIfXZH7clxKIDhBwHmBS0ZcxM,15811
|
@@ -117,7 +117,7 @@ nabu/opencl/padding.py,sha256=CjeifU4xcUhgD_OILoIC4vPDQGVyVRjJXsMb8gxPL_0,238
|
|
117
117
|
nabu/opencl/processing.py,sha256=cKq_VLtLBPijp2pl7Zgc4mrVsYLUA27x26jPo484Kg4,2416
|
118
118
|
nabu/opencl/utils.py,sha256=OPqSJAZ82EwRmqu_H5_S59Y9a3CrqQhEQomWQj-EuSU,10239
|
119
119
|
nabu/opencl/src/ElementOp.cl,sha256=RMScHhHYDa6xXC4NLJrC1KpDRq-aMZG1lwq3O9pStiY,1258
|
120
|
-
nabu/opencl/src/backproj.cl,sha256=
|
120
|
+
nabu/opencl/src/backproj.cl,sha256=PVyCmlw2Jj_4tgdmY1NGFxg0WMfrhxIZ1W9ShcpoghI,5350
|
121
121
|
nabu/opencl/src/fftshift.cl,sha256=xq-HNRWhuXqTVD_nD-38_41HPYZPCXAHDTpxsGURSTY,1726
|
122
122
|
nabu/opencl/src/halftomo.cl,sha256=IZ2VJwWLpfaNpzM8Ief13zsqDcq68lyFqG55qYWoHNE,1386
|
123
123
|
nabu/opencl/src/padding.cl,sha256=0e4wDB3wOVFIFw0f7VTfD45PK6HzDhooCgK2DZqiUfA,460
|
@@ -130,33 +130,34 @@ nabu/pipeline/config_validators.py,sha256=ertytKkgp154AI0lOZbCWK9vMugSEoWVp7dy1x
|
|
130
130
|
nabu/pipeline/datadump.py,sha256=tKW-Dl28FU2vf1OuIie_YI1-GT1DMreis57sOR-DuGU,7026
|
131
131
|
nabu/pipeline/dataset_validator.py,sha256=etQw9NC_YGsdWCgjsn8aJ3WfvcRuJlLVZlWoqhvvo-8,9263
|
132
132
|
nabu/pipeline/detector_distortion_provider.py,sha256=ru1AxbcuO-FA8FYooPBWgp1lzdSDUtzFUC1A_sS8jME,920
|
133
|
-
nabu/pipeline/estimators.py,sha256=
|
134
|
-
nabu/pipeline/params.py,sha256=
|
133
|
+
nabu/pipeline/estimators.py,sha256=QAX0ZZicaRp81ffN8XjDlk_WGVOfy6nZBqtiW_Fr5Lo,40445
|
134
|
+
nabu/pipeline/params.py,sha256=o4uD1v8eqNXDqxpNoC7rHOHgg-8cf5q_KfGrnHPP3sE,3882
|
135
135
|
nabu/pipeline/processconfig.py,sha256=3xx2Lc8uEzPAqSMwUncr4RCiCtKn2c7wnXXbPSn8GNo,7719
|
136
136
|
nabu/pipeline/reader.py,sha256=wkxPHYOi_C8dHNc7kddB8AMtFuW7GjsP_tm6SJeHlEY,4792
|
137
137
|
nabu/pipeline/utils.py,sha256=5GGhT9Wu7tHDlF3w7YNjTTYkNBl5xHa9EcRZSGFUWtM,3538
|
138
138
|
nabu/pipeline/writer.py,sha256=NVeAtkWDtXg5UJ4C3wsbkfM23ZnK64atCWl8tjmjsuY,8166
|
139
139
|
nabu/pipeline/fullfield/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
140
|
-
nabu/pipeline/fullfield/chunked.py,sha256=
|
140
|
+
nabu/pipeline/fullfield/chunked.py,sha256=xuLkZk18fRbyNJcYl3mY-oEFpnKtOw-1vyMl8LvQ_mk,40954
|
141
141
|
nabu/pipeline/fullfield/chunked_cuda.py,sha256=Jdkk6ZIt3S6UZYbupHtSj2vrj3krWMcqRHHprfblDfk,5848
|
142
|
-
nabu/pipeline/fullfield/computations.py,sha256=
|
142
|
+
nabu/pipeline/fullfield/computations.py,sha256=uqf7LvuDPm7n51BpP8eb8vTewDgRFyzSDP249g3FWBE,10098
|
143
143
|
nabu/pipeline/fullfield/dataset_validator.py,sha256=HK_bmlII9pc59PXCgKJOyLv7Xu3DYv_jbH3RmQSgzvI,2933
|
144
|
-
nabu/pipeline/fullfield/
|
145
|
-
nabu/pipeline/fullfield/
|
146
|
-
nabu/pipeline/fullfield/
|
144
|
+
nabu/pipeline/fullfield/get_double_flatfield.py,sha256=uYFDAii6Nw4RCUQO_6Id6tXLdmtVbj_pxAHQWennSeE,5411
|
145
|
+
nabu/pipeline/fullfield/nabu_config.py,sha256=gSsWXEyQsCpQnrWtqhMSYAiNZLXdYnWwCiQzmYplxWI,32700
|
146
|
+
nabu/pipeline/fullfield/processconfig.py,sha256=MISwEwb57hJRWr4Vih2cPA503CVMccqrsaTzmUt-BFk,37726
|
147
|
+
nabu/pipeline/fullfield/reconstruction.py,sha256=sXI0NIFUc9nAhbAW6M52mbqalc6mFO315rrCl5r1RoY,37775
|
147
148
|
nabu/pipeline/helical/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
148
149
|
nabu/pipeline/helical/dataset_validator.py,sha256=HdKjUSj3PIpJb1dKSzJg8s4zXbAnMPWaPn8kvp_xQEs,657
|
149
150
|
nabu/pipeline/helical/fbp.py,sha256=MKn587bO5Lj7yFu-Sll2RkOIY5r3rC-fmC10SzFU5i0,5841
|
150
151
|
nabu/pipeline/helical/filtering.py,sha256=dK93SP68QMCROTh8kWaYsm_NhqFpfj0I1Teek7dM6xg,10215
|
151
|
-
nabu/pipeline/helical/gridded_accumulator.py,sha256=
|
152
|
+
nabu/pipeline/helical/gridded_accumulator.py,sha256=DfyNp3MRQ1JWBjEMB_MJuJodtaProczeceh1xq2YvXU,26352
|
152
153
|
nabu/pipeline/helical/helical_chunked_regridded.py,sha256=Pedgb4D8SzMEHw_vIrSVTHXkt60gXmAIUGM69LBosaE,68463
|
153
154
|
nabu/pipeline/helical/helical_chunked_regridded_cuda.py,sha256=DdH55nQml3JWDX9VJaxflefyFWFZr6zBWwJRitCeeE8,3887
|
154
|
-
nabu/pipeline/helical/helical_reconstruction.py,sha256
|
155
|
+
nabu/pipeline/helical/helical_reconstruction.py,sha256=-QwmcBif0XrONm01wJ1IhyRMU3YjG6fdAJEkImOk-Uc,24111
|
155
156
|
nabu/pipeline/helical/helical_utils.py,sha256=s38xbugkIJgcGeXqXJVSdGsUg-WPHt5hBmWuiYHVzR0,1437
|
156
|
-
nabu/pipeline/helical/nabu_config.py,sha256=
|
157
|
+
nabu/pipeline/helical/nabu_config.py,sha256=lQU1AZaBSsvBEbNGAf5t0DRXFmNJzUqObrcqGKc7WM8,8047
|
157
158
|
nabu/pipeline/helical/processconfig.py,sha256=IlCfKkiclBmDDdT6Ail3aSj9Q7zV38YpFmF1_SsCjy4,2775
|
158
159
|
nabu/pipeline/helical/span_strategy.py,sha256=tKLWQv2woj3SSW5JLJu5pNbv48fy0vYNejnm7uHnaEc,25057
|
159
|
-
nabu/pipeline/helical/weight_balancer.py,sha256=
|
160
|
+
nabu/pipeline/helical/weight_balancer.py,sha256=9yQodctr1qUZFOEA-xfvUiolr-tI-HjX0Y8YIlO5gII,3975
|
160
161
|
nabu/pipeline/helical/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
161
162
|
nabu/pipeline/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
162
163
|
nabu/pipeline/tests/test_estimators.py,sha256=usi2Rp0zry5ADJV9k8nHhCqdDBSuHguZvyH-jkg-F48,6146
|
@@ -176,21 +177,21 @@ nabu/preproc/flatfield_cuda.py,sha256=Iiqv7bHa870DZOH68L19xiN1kG9I9JXuckFfA3khGt
|
|
176
177
|
nabu/preproc/flatfield_variable_region.py,sha256=RVmSW515vgkHagjqotPNPUe97oQooHgdqkBn6hPH_2Q,3142
|
177
178
|
nabu/preproc/phase.py,sha256=nRFhnHN_Bmmu5AHDcoO-Kt59sXYFSQaTljHZ5dlZiA0,13857
|
178
179
|
nabu/preproc/phase_cuda.py,sha256=2oGjpmSl8U6dbzxrU_pt-_3JFm3XeBMCTCUNoxjIAuw,4944
|
179
|
-
nabu/preproc/shift.py,sha256=
|
180
|
+
nabu/preproc/shift.py,sha256=CT1i-G7Bs36hK5CGYBik05qAcKj82YpBZKNL3brcbzw,3419
|
180
181
|
nabu/preproc/shift_cuda.py,sha256=4YOVRZ4oECEVWOQ6MzDBh8cOY2RtOOhlU7tir0Tp77M,4125
|
181
182
|
nabu/preproc/tests/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
182
183
|
nabu/preproc/tests/test_ccd_corr.py,sha256=KIpwaWYWT_6OPVXyVuLxXIIWreBkYF0rOnDMiegiLMU,2249
|
183
|
-
nabu/preproc/tests/test_ctf.py,sha256=
|
184
|
+
nabu/preproc/tests/test_ctf.py,sha256=4KtjLdiMqwtv3ZJgk-q5xzxoxSnKL_wleZtEgEgEw2A,9986
|
184
185
|
nabu/preproc/tests/test_double_flatfield.py,sha256=qUmgAktFHqzKJBHHfj3GJzorey0yk7R0e4nr8dRmbTo,2870
|
185
186
|
nabu/preproc/tests/test_flatfield.py,sha256=8_vmTtfmrpbuKUr4fW8NmtH-PtGWkSQkMBFD6hs0ul4,21055
|
186
|
-
nabu/preproc/tests/test_paganin.py,sha256=
|
187
|
+
nabu/preproc/tests/test_paganin.py,sha256=Ixlp624o0xtFs12akN6sDn-gHWXm1wVlcdumm2prqh4,2978
|
187
188
|
nabu/preproc/tests/test_vshift.py,sha256=Gq9sDtbbAAdLTJALH2qcbeYXE5dINQ8QpBnCgZM0tFQ,2972
|
188
189
|
nabu/processing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
189
190
|
nabu/processing/azim.py,sha256=GIv_C1NYjUP3IYd51qvfECTDu-rfs3Dl2Hb5-ZhdhHY,7080
|
190
191
|
nabu/processing/convolution_cuda.py,sha256=jOLKdEwzBwNZPTEjXIBWStZp22ieeukc6KGnuSNVnaA,15421
|
191
|
-
nabu/processing/fft_base.py,sha256=
|
192
|
-
nabu/processing/fft_cuda.py,sha256=
|
193
|
-
nabu/processing/fft_opencl.py,sha256=
|
192
|
+
nabu/processing/fft_base.py,sha256=wSLiyJEwX51chfZG3CWPl0DvKp182qAmTnRY8N1mWW0,5741
|
193
|
+
nabu/processing/fft_cuda.py,sha256=0JNzdSPPQ1xS38mjsgriN3-Cj9MXCtADLVHzIQjQjWc,3467
|
194
|
+
nabu/processing/fft_opencl.py,sha256=Qhd9F32XCN22tet-en8S-yGkZDNsOMapqHlS0eTiPp0,2082
|
194
195
|
nabu/processing/fftshift.py,sha256=mFOKuqQtxDPXoFPPP_G-YMA4WFmmO0oPFXjBWrrfDO8,4880
|
195
196
|
nabu/processing/histogram.py,sha256=CumzHFjOw0JaHWlMnhCnj7I2Guam1HYqPVJeijKqC40,11376
|
196
197
|
nabu/processing/histogram_cuda.py,sha256=G0uKJNhDwPUTr8lyEBr1m5G0D4n3-eZwCCBC1FZaCyQ,3338
|
@@ -199,9 +200,9 @@ nabu/processing/medfilt_cuda.py,sha256=usnNMKxFMrGI6ZIYNRDXBn5kzBzOyuVay8mnQSvNR
|
|
199
200
|
nabu/processing/muladd.py,sha256=CZyVL2innf7suGvwM7xB16vUjgZSz0UYEm7Z563igyw,876
|
200
201
|
nabu/processing/muladd_cuda.py,sha256=wGivGyyMn7FN68hDT590RwSiV4Ju-TLGwa1bnw4Cd_k,2477
|
201
202
|
nabu/processing/padding_base.py,sha256=P6Zu8yLkHrCW3ZAZmeLfPn2ZfAH2_fZEB3CMLbCWL6E,2874
|
202
|
-
nabu/processing/padding_cuda.py,sha256=
|
203
|
+
nabu/processing/padding_cuda.py,sha256=72bypO92I9TRVr63YO6COnht3v9nwt95QkfYiNJBqY8,2612
|
203
204
|
nabu/processing/padding_opencl.py,sha256=H7w5bY9Th9pJKYKaX1_u-XqUj8lM5XWfVViu0ax4W40,3074
|
204
|
-
nabu/processing/processing_base.py,sha256=
|
205
|
+
nabu/processing/processing_base.py,sha256=sbMmkjjYvkqNosGsO8IeC2hlzIqLapdAh-wGv2ssG-o,4477
|
205
206
|
nabu/processing/roll_opencl.py,sha256=ms6ZW7ecG-kWq--wWijAjDB_uVWQtUylFp_EDKmfUKw,2283
|
206
207
|
nabu/processing/rotation.py,sha256=8tVQponi8tv8uPw-xT-0GyZecl3YIXyJgPkEnQMer8M,1836
|
207
208
|
nabu/processing/rotation_cuda.py,sha256=mfExwPCTyoKFhv8ZmE833jI_D6o-J-p5-TxacGdb-e4,2796
|
@@ -210,7 +211,7 @@ nabu/processing/unsharp.py,sha256=XqoieKlX5sEHalxObi5JBOjauRUSbiHc6rqYT_buTa4,26
|
|
210
211
|
nabu/processing/unsharp_cuda.py,sha256=uKFCEk8bRqgJzR8HB_OeKYuwC5jKqaXpFI6pRv_pDY4,2152
|
211
212
|
nabu/processing/unsharp_opencl.py,sha256=vBVq5wA-rxOkULE-sv6WzNt5Pq9hc3gFcp4mM0kCo44,2651
|
212
213
|
nabu/processing/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
213
|
-
nabu/processing/tests/test_fft.py,sha256=
|
214
|
+
nabu/processing/tests/test_fft.py,sha256=9UnMcqnmzlBz5SHeJV9b8VOX-cAm35DBIbEP84l4nlM,7587
|
214
215
|
nabu/processing/tests/test_fftshift.py,sha256=Qwg3oOwNh_MRmg9BS1kMVhQSSfzQzrCOsppsvY3v5rg,2599
|
215
216
|
nabu/processing/tests/test_histogram.py,sha256=25CLs1WZpLF9xZ2DR82x4_YokA5Z76Qsnn6zY8YdJj8,2283
|
216
217
|
nabu/processing/tests/test_medfilt.py,sha256=rnReK3MMCsc74-NoycYSRSMp7bN4Qdg4cZbHfWQ9ZWQ,2652
|
@@ -221,36 +222,36 @@ nabu/processing/tests/test_rotation.py,sha256=vedRXV9RePJywBKoyBkGANP1dhZCjphbYO
|
|
221
222
|
nabu/processing/tests/test_transpose.py,sha256=hTG17wTaB5Wv6twbW3ZFhBv6BYfqJY7DTQPoO0-KdkM,2760
|
222
223
|
nabu/processing/tests/test_unsharp.py,sha256=R3ovbwDDp3ccy2A8t6CcUVELXRWkED5EnQdN2FQOfQM,4391
|
223
224
|
nabu/reconstruction/__init__.py,sha256=EmKVvx_-FJvzJngG4ielIC7FhMCpI1Waaflg_lF44tk,163
|
224
|
-
nabu/reconstruction/cone.py,sha256=
|
225
|
-
nabu/reconstruction/fbp.py,sha256=
|
226
|
-
nabu/reconstruction/fbp_base.py,sha256=
|
225
|
+
nabu/reconstruction/cone.py,sha256=tSjaMDHeFV-h_IFbxUqSbhqlWmvlBcJQ8u89Y9Q9gg8,20559
|
226
|
+
nabu/reconstruction/fbp.py,sha256=Tiz-CkYnDZ6YL6YB-e-BfwPdQEbw1X4GhGPX8gUs7Ng,5520
|
227
|
+
nabu/reconstruction/fbp_base.py,sha256=NaHGF33TERTB-mCeMJPYLEn_FkZCKCUioSYkNXaA-Xg,17553
|
227
228
|
nabu/reconstruction/fbp_opencl.py,sha256=coEGLq65PCuvWnhAbIyLPHACkWjMB0XOceMp9ZIDWtc,3274
|
228
|
-
nabu/reconstruction/filtering.py,sha256=
|
229
|
-
nabu/reconstruction/filtering_cuda.py,sha256=
|
230
|
-
nabu/reconstruction/filtering_opencl.py,sha256=
|
231
|
-
nabu/reconstruction/hbp.py,sha256=
|
232
|
-
nabu/reconstruction/mlem.py,sha256=
|
229
|
+
nabu/reconstruction/filtering.py,sha256=monJnA_kk9k_Gy7bMAos9I-XgU8czWhf9vBth6ikcMM,10566
|
230
|
+
nabu/reconstruction/filtering_cuda.py,sha256=_S-BZMhtnNt8ugePSmf-LF7JvMPCOyGPUMSseymgwZw,4019
|
231
|
+
nabu/reconstruction/filtering_opencl.py,sha256=s65EWrjfUFdScicmNAGyRv8-8OQgapy_HvwMm-J7Lh4,3705
|
232
|
+
nabu/reconstruction/hbp.py,sha256=Qll7i20LWxUo1-SHRxemkYAolBTP8HScwt1OvWmD2r0,18642
|
233
|
+
nabu/reconstruction/mlem.py,sha256=CD9RppEzHgWRTEwzkY1hQXsfP9xXn1n8p3Lk8H1ya5Y,3629
|
233
234
|
nabu/reconstruction/projection.py,sha256=SNocaOY9HuNiHs-VxkW9IS707JPJnd3sDjAbf7aIw2E,9081
|
234
235
|
nabu/reconstruction/reconstructor.py,sha256=16xxHcK4iie-uh-trf6x_IuvgxJKBvQRTE5B8tnc4F8,7358
|
235
236
|
nabu/reconstruction/reconstructor_cuda.py,sha256=m_3GzG44PRyiSEfTvYjgr5atLwl26hMfZOMyqTWxp0g,1644
|
236
237
|
nabu/reconstruction/rings.py,sha256=mpbCLuFM_6Uy9oNJkyQ8tZwhGhrbWtzRlArSRsC90bI,9527
|
237
|
-
nabu/reconstruction/rings_cuda.py,sha256=
|
238
|
+
nabu/reconstruction/rings_cuda.py,sha256=yWUQ-XK-2htZ59GM5aNORA4sjxUswEwWUZuWqKJXiNY,14878
|
238
239
|
nabu/reconstruction/sinogram.py,sha256=VeydpunbseI6azvMpoutldz3ZaSc6cKP4ibrGuvEHN4,17028
|
239
240
|
nabu/reconstruction/sinogram_cuda.py,sha256=DBF06ruzkZ5zn8x06Ron2NkB_FBKiZC2oM7kjeiV6jQ,10630
|
240
241
|
nabu/reconstruction/sinogram_opencl.py,sha256=vxJa5BeOd2NVdUayXYfQGAfO1AEbJfTGotuijT8qgCs,1486
|
241
242
|
nabu/reconstruction/tests/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
242
|
-
nabu/reconstruction/tests/test_cone.py,sha256=
|
243
|
-
nabu/reconstruction/tests/test_deringer.py,sha256=
|
244
|
-
nabu/reconstruction/tests/test_fbp.py,sha256=
|
245
|
-
nabu/reconstruction/tests/test_filtering.py,sha256=
|
246
|
-
nabu/reconstruction/tests/test_halftomo.py,sha256=
|
243
|
+
nabu/reconstruction/tests/test_cone.py,sha256=yRx0k1Nv1bTP2IyiwygtIoafQ6v18-qf9J1Rkg_OxSI,22732
|
244
|
+
nabu/reconstruction/tests/test_deringer.py,sha256=3xT7YltisnXa-NUd7aoMe88wOfTiTj-uxC6JFxGXtUA,8352
|
245
|
+
nabu/reconstruction/tests/test_fbp.py,sha256=SLdNjpWp3c7XVRUlR9nKyUvvzEcu9CkFE7WaP6nFxQc,16368
|
246
|
+
nabu/reconstruction/tests/test_filtering.py,sha256=RXQAEvNIjwiQ-zU6xrkV4h-MkDg3uVBAUyz0tOSIfIw,5581
|
247
|
+
nabu/reconstruction/tests/test_halftomo.py,sha256=zCAOFGRaLicr2PLw3628Kdcuj_bhGZz8QZvWBL-c7As,6526
|
247
248
|
nabu/reconstruction/tests/test_mlem.py,sha256=JWby9nqWqockgUh2RQoqrC8BtfB4v5SCNayk4bBJ4TM,3791
|
248
249
|
nabu/reconstruction/tests/test_projector.py,sha256=QcHLnNWQ6HC9pJo9CdalaaeEDQ_vFpNMn5yXEpfBDXI,6259
|
249
|
-
nabu/reconstruction/tests/test_reconstructor.py,sha256=
|
250
|
+
nabu/reconstruction/tests/test_reconstructor.py,sha256=xzfEM0j48ScQoGqWVcAK74HG97tcF7FsVVLzvX_TgHE,3379
|
250
251
|
nabu/reconstruction/tests/test_sino_normalization.py,sha256=qNnpVUp3UcFGyLlSP0rCzE5hxdV6YENL9AF6mo72WcQ,3669
|
251
252
|
nabu/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
252
253
|
nabu/resources/cor.py,sha256=-mcrTbj3G7o4PP5E_gIRo2j6_-ADmMkkOc_0CyQv84c,170
|
253
|
-
nabu/resources/dataset_analyzer.py,sha256=
|
254
|
+
nabu/resources/dataset_analyzer.py,sha256=H32DEnusLVVuITGUjZW-CLvBaV6H22W1UtHZjybaRsI,19562
|
254
255
|
nabu/resources/gpu.py,sha256=oQA8PpPdyuIzpxq1PwVd9gJdyCiLIry2godUV1AbPW0,5769
|
255
256
|
nabu/resources/logger.py,sha256=xV9UoLZBw3wXAWYfOgqrnOtzJc9aC1VNO4LM2cHxWJg,3738
|
256
257
|
nabu/resources/nxflatfield.py,sha256=4B8MYKPEtREOe4ZMTpDVlIxldXPutdI8DgO0P8AeRo0,9317
|
@@ -263,12 +264,12 @@ nabu/resources/templates/id16_holo.conf,sha256=sDd_rEJGZjOGVAsGub5sT2arfXDnc_sxy
|
|
263
264
|
nabu/resources/templates/id16a_fluo.conf,sha256=Nz1etzO2fSwksi7CThWJ5T1kZEdyBe8rMO7puNJ93Hc,542
|
264
265
|
nabu/resources/templates/id19_pag.conf,sha256=u4fFPEBprzOW9_5_ChkIgowQcYpLhjmA8Gwm5XgC4Jc,384
|
265
266
|
nabu/resources/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
266
|
-
nabu/resources/tests/test_extract.py,sha256=
|
267
|
+
nabu/resources/tests/test_extract.py,sha256=6ufLTc4Wgf9-FLsscpG2TbUDEn767iLVdyOrwRQyI9A,443
|
267
268
|
nabu/resources/tests/test_nxflatfield.py,sha256=cbUWBOhE9sfdpKmxPTfu3_waPHFC2dZjy6z9gWpfzBA,4193
|
268
269
|
nabu/resources/tests/test_units.py,sha256=F2jFTck-1UwYET1MwTtX6ntzYUosfwOJkugSencGgz8,2155
|
269
270
|
nabu/stitching/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
270
271
|
nabu/stitching/alignment.py,sha256=UbyhDAYlISeb6pD0NCzdPo1h5rQwjROVP29jsXoYTsg,8954
|
271
|
-
nabu/stitching/config.py,sha256=
|
272
|
+
nabu/stitching/config.py,sha256=_4_cGIBwSDk7BFTKtuZy0x0PuCkK5LD5EJbTVlxxAKM,52966
|
272
273
|
nabu/stitching/definitions.py,sha256=JbmYwXKxOTYCr2LDXbHO-uNE2OLOBm4ir9AQ7e-Q3lY,158
|
273
274
|
nabu/stitching/frame_composition.py,sha256=bOuOn3SoyAgtEv_DZon-JbEfh5hW3RySTjK6ERxVZ2w,6626
|
274
275
|
nabu/stitching/overlap.py,sha256=bW_QjjEOihFqVFVmGt3_nmEx4wYKGjpzSDFL9Q9_o6E,17214
|
@@ -280,15 +281,15 @@ nabu/stitching/y_stitching.py,sha256=Urt2lBXokxXxX5HFHEiLBqC69yy5b_KyuKFoU8smah4
|
|
280
281
|
nabu/stitching/z_stitching.py,sha256=gNwj7qWvDFQaGroLVoQnKBPlbvr_CReUQEqxW15m2Ag,1835
|
281
282
|
nabu/stitching/stitcher/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
282
283
|
nabu/stitching/stitcher/base.py,sha256=Nyc5L-nvSLWOsrVVq_EP8V9j5AKnFVgxTijStyiF5-I,4326
|
283
|
-
nabu/stitching/stitcher/post_processing.py,sha256=
|
284
|
-
nabu/stitching/stitcher/pre_processing.py,sha256=
|
285
|
-
nabu/stitching/stitcher/single_axis.py,sha256=
|
284
|
+
nabu/stitching/stitcher/post_processing.py,sha256=ztVpSSMaznV61OT9fDkRa2A6Xnpd_IkMvCX4sAp0r2M,26864
|
285
|
+
nabu/stitching/stitcher/pre_processing.py,sha256=bdnGy_RHXugglLAn0ixKRxenPdEm5jbxJEDGQIoEkJg,51482
|
286
|
+
nabu/stitching/stitcher/single_axis.py,sha256=hocbPKtOmcx9z_Eavyzxj9W-yMgeLlaze6Dsv8NdWVc,20026
|
286
287
|
nabu/stitching/stitcher/stitcher.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
287
288
|
nabu/stitching/stitcher/y_stitcher.py,sha256=KXwkyw6cCFcuSBCq5OyAait2Ob_5WRrtawrAlAhk60k,317
|
288
|
-
nabu/stitching/stitcher/z_stitcher.py,sha256=
|
289
|
-
nabu/stitching/stitcher/dumper/__init__.py,sha256=
|
289
|
+
nabu/stitching/stitcher/z_stitcher.py,sha256=pb8IezJOD9U7hTc6LCExRtkxOgBsUUCgf4G8yuvq11k,1397
|
290
|
+
nabu/stitching/stitcher/dumper/__init__.py,sha256=FcSlb-AvGWZHm_4x9GYvmTrB1488vKeHv6uVR1pKAa0,243
|
290
291
|
nabu/stitching/stitcher/dumper/base.py,sha256=kenknxtqyg_SQMDsLzd0yBYPlpepCaqyB5bvZnGEpuk,3397
|
291
|
-
nabu/stitching/stitcher/dumper/postprocessing.py,sha256
|
292
|
+
nabu/stitching/stitcher/dumper/postprocessing.py,sha256=-50ZIzsBqp1344pcp_eGKaWeCvIXLevPNtvDtDiGP_E,18274
|
292
293
|
nabu/stitching/stitcher/dumper/preprocessing.py,sha256=7qOx27p92Tbbiah6gYEjkxfax7L8ictdrvzqfDm3vHo,2219
|
293
294
|
nabu/stitching/tests/test_alignment.py,sha256=MACak1ILOr8nRKeT0mWfMd-ZvhCl3SWjjcp6GjRbITc,2735
|
294
295
|
nabu/stitching/tests/test_config.py,sha256=joelu7WubWbT3z5NxhiGdhaMOhI8z7-XkTmN6U9Cc-o,7302
|
@@ -302,7 +303,7 @@ nabu/stitching/tests/test_z_postprocessing_stitching.py,sha256=vAQB8nGa2-GdqGNj7
|
|
302
303
|
nabu/stitching/tests/test_z_preprocessing_stitching.py,sha256=UDka2f6_6ex2Zu4T5hJhjbt5jB19r16pnnfPLL6KiVM,16127
|
303
304
|
nabu/stitching/utils/__init__.py,sha256=alIDGBnxWH4JvP-UW-7N99seBBi0r1GV1h8f1ERFBec,21
|
304
305
|
nabu/stitching/utils/post_processing.py,sha256=aow36shbYhFgAnbCoq6mtXVpjBNCKm7VSLIvv3EYVdA,11303
|
305
|
-
nabu/stitching/utils/utils.py,sha256=
|
306
|
+
nabu/stitching/utils/utils.py,sha256=hnS0_TFl5SjsOv03bwSAPUQXbL1t9dsUTR259v9IDZ8,24558
|
306
307
|
nabu/stitching/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
307
308
|
nabu/stitching/utils/tests/test_post-processing.py,sha256=X79gYJ2dwF_bjFWVQLu9odHNJaMmljfuI1-ROIp7jdE,766
|
308
309
|
nabu/thirdparty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -311,9 +312,9 @@ nabu/thirdparty/pore3d_deringer_munch.py,sha256=o4bisnFc-wMjuohWBT8wgWmfNehPQGtC
|
|
311
312
|
nabu/thirdparty/tomocupy_remove_stripe.py,sha256=Khe4zFf0kRzu65Yxnvq58gt1ljOztqJGdMDhVAiM7lM,24363
|
312
313
|
nabu/thirdparty/tomopy_phase.py,sha256=hK4oPpkogLOhv23XzzEXQY2u3r8fJvASY_bINVs6ERE,8634
|
313
314
|
nabu/thirdparty/tomwer_load_flats_darks.py,sha256=ZNoVAinUb_wGYbfvs_4BVnWsjsQmNxSvCh1bWhR2WWg,5611
|
314
|
-
nabu-2025.1.0.
|
315
|
-
nabu-2025.1.0.
|
316
|
-
nabu-2025.1.0.
|
317
|
-
nabu-2025.1.0.
|
318
|
-
nabu-2025.1.0.
|
319
|
-
nabu-2025.1.0.
|
315
|
+
nabu-2025.1.0.dev13.dist-info/licenses/LICENSE,sha256=1eAIPSnEsnSFNUODnLtNtQTs76exG3ZxJ1DJR6zoUBA,1066
|
316
|
+
nabu-2025.1.0.dev13.dist-info/METADATA,sha256=lwL6b68kmLzJUclKbi3MMeCZ1ltGOyS1NviEUbSuUiI,4327
|
317
|
+
nabu-2025.1.0.dev13.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
318
|
+
nabu-2025.1.0.dev13.dist-info/entry_points.txt,sha256=cJKGkBeykVL7uK3E4R0RLRqMXifTL2qdO573syPAvJc,1288
|
319
|
+
nabu-2025.1.0.dev13.dist-info/top_level.txt,sha256=fsm_N3eXLRZk2QXF9OSKPNDPFXOz8FAQjHh5avT3dok,9
|
320
|
+
nabu-2025.1.0.dev13.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|