nabu 2024.1.0rc1__py3-none-any.whl → 2024.1.0rc3__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.
- doc/doc_config.py +32 -0
- nabu/__init__.py +1 -1
- nabu/app/bootstrap_stitching.py +1 -1
- nabu/app/cli_configs.py +5 -0
- nabu/app/composite_cor.py +23 -10
- nabu/app/multicor.py +0 -1
- nabu/app/reduce_dark_flat.py +5 -2
- nabu/app/stitching.py +16 -2
- nabu/estimation/cor.py +169 -73
- nabu/estimation/tests/test_cor.py +27 -18
- nabu/io/writer.py +5 -3
- nabu/pipeline/estimators.py +72 -30
- nabu/pipeline/fullfield/chunked.py +5 -1
- nabu/pipeline/fullfield/computations.py +2 -2
- nabu/pipeline/fullfield/nabu_config.py +4 -4
- nabu/pipeline/helical/gridded_accumulator.py +22 -4
- nabu/pipeline/helical/helical_chunked_regridded.py +9 -4
- nabu/pipeline/helical/tests/test_accumulator.py +1 -0
- nabu/pipeline/params.py +3 -0
- nabu/pipeline/tests/test_estimators.py +9 -11
- nabu/pipeline/writer.py +1 -0
- nabu/stitching/config.py +2 -2
- nabu/stitching/z_stitching.py +61 -38
- {nabu-2024.1.0rc1.dist-info → nabu-2024.1.0rc3.dist-info}/METADATA +2 -1
- {nabu-2024.1.0rc1.dist-info → nabu-2024.1.0rc3.dist-info}/RECORD +29 -29
- nabu/app/tests/__init__.py +0 -0
- {nabu-2024.1.0rc1.dist-info → nabu-2024.1.0rc3.dist-info}/LICENSE +0 -0
- {nabu-2024.1.0rc1.dist-info → nabu-2024.1.0rc3.dist-info}/WHEEL +0 -0
- {nabu-2024.1.0rc1.dist-info → nabu-2024.1.0rc3.dist-info}/entry_points.txt +0 -0
- {nabu-2024.1.0rc1.dist-info → nabu-2024.1.0rc3.dist-info}/top_level.txt +0 -0
nabu/stitching/z_stitching.py
CHANGED
@@ -46,6 +46,7 @@ from silx.io.dictdump import dicttonx
|
|
46
46
|
|
47
47
|
from nxtomo.nxobject.nxdetector import ImageKey
|
48
48
|
from nxtomo.nxobject.nxtransformations import NXtransformations
|
49
|
+
from nxtomo.paths.nxtomo import get_paths as _get_nexus_paths
|
49
50
|
from nxtomo.utils.transformation import build_matrix, LRDetTransformation, UDDetTransformation
|
50
51
|
|
51
52
|
from tomoscan.io import HDF5File
|
@@ -55,7 +56,6 @@ from tomoscan.esrf import NXtomoScan, EDFTomoScan
|
|
55
56
|
from tomoscan.volumebase import VolumeBase
|
56
57
|
from tomoscan.esrf.volume import HDF5Volume
|
57
58
|
from tomoscan.serie import Serie
|
58
|
-
from tomoscan.nexus.paths.nxtomo import get_paths as _get_nexus_paths
|
59
59
|
from tomoscan.factory import Factory as TomoscanFactory
|
60
60
|
from tomoscan.utils.volume import concatenate as concatenate_volumes
|
61
61
|
from tomoscan.esrf.scan.utils import (
|
@@ -1061,9 +1061,9 @@ class PreProcessZStitcher(ZStitcher):
|
|
1061
1061
|
darks=scan.reduced_darks,
|
1062
1062
|
radios_indices=radio_indices,
|
1063
1063
|
radios_srcurrent=scan.electric_current[radio_indices] if has_reduced_metadata else None,
|
1064
|
-
flats_srcurrent=
|
1065
|
-
|
1066
|
-
|
1064
|
+
flats_srcurrent=(
|
1065
|
+
scan.reduced_flats_infos.machine_electric_current if has_reduced_metadata else None
|
1066
|
+
),
|
1067
1067
|
)
|
1068
1068
|
# note: we need to cast radios to float 32. Darks and flats are cast to anyway
|
1069
1069
|
data = ff_arrays.normalize_radios(raw_radios.astype(numpy.float32))
|
@@ -2114,18 +2114,67 @@ class StitchingPostProcAggregation:
|
|
2114
2114
|
|
2115
2115
|
This is the goal of this class.
|
2116
2116
|
Please be careful with API. This is already inheriting from a tomwer class
|
2117
|
+
|
2118
|
+
:param ZStitchingConfiguration stitching_config: configuration of the stitching configuration
|
2119
|
+
:param Optional[tuple] futures: futures that just runned
|
2120
|
+
:param Optional[tuple] existing_objs: futures that just runned
|
2121
|
+
:param
|
2117
2122
|
"""
|
2118
2123
|
|
2119
|
-
def __init__(
|
2120
|
-
|
2121
|
-
|
2124
|
+
def __init__(
|
2125
|
+
self,
|
2126
|
+
stitching_config: ZStitchingConfiguration,
|
2127
|
+
futures: Optional[tuple] = None,
|
2128
|
+
existing_objs_ids: Optional[tuple] = None,
|
2129
|
+
) -> None:
|
2130
|
+
if not isinstance(stitching_config, (ZStitchingConfiguration)):
|
2131
|
+
raise TypeError(f"stitching_config should be an instance of {ZStitchingConfiguration}")
|
2132
|
+
if not ((existing_objs_ids is None) ^ (futures is None)):
|
2133
|
+
raise ValueError("Either existing_objs or futures should be provided (can't provide both)")
|
2122
2134
|
self._futures = futures
|
2123
2135
|
self._stitching_config = stitching_config
|
2136
|
+
self._existing_objs_ids = existing_objs_ids
|
2124
2137
|
|
2125
2138
|
@property
|
2126
2139
|
def futures(self):
|
2140
|
+
# TODO: deprecate it ?
|
2127
2141
|
return self._futures
|
2128
2142
|
|
2143
|
+
def retrieve_tomo_objects(self) -> tuple():
|
2144
|
+
"""
|
2145
|
+
Return tomo objects to be stitched together. Either from future or from existing_objs
|
2146
|
+
"""
|
2147
|
+
if self._existing_objs_ids is not None:
|
2148
|
+
scan_ids = self._existing_objs_ids
|
2149
|
+
else:
|
2150
|
+
results = {}
|
2151
|
+
_logger.info(f"wait for slurm job to be completed")
|
2152
|
+
for obj_id, future in self.futures.items():
|
2153
|
+
results[obj_id] = future.result()
|
2154
|
+
|
2155
|
+
failed = tuple(
|
2156
|
+
filter(
|
2157
|
+
lambda x: x.exception() is not None,
|
2158
|
+
self.futures.values(),
|
2159
|
+
)
|
2160
|
+
)
|
2161
|
+
if len(failed) > 0:
|
2162
|
+
# if some job failed: unseless to do the concatenation
|
2163
|
+
exceptions = " ; ".join([f"{job} : {job.exception()}" for job in failed])
|
2164
|
+
raise RuntimeError(f"some job failed. Won't do the concatenation. Exceptiosn are {exceptions}")
|
2165
|
+
|
2166
|
+
canceled = tuple(
|
2167
|
+
filter(
|
2168
|
+
lambda x: x.cancelled(),
|
2169
|
+
self.futures.values(),
|
2170
|
+
)
|
2171
|
+
)
|
2172
|
+
if len(canceled) > 0:
|
2173
|
+
# if some job canceled: unseless to do the concatenation
|
2174
|
+
raise RuntimeError(f"some job failed. Won't do the concatenation. Jobs are {' ; '.join(canceled)}")
|
2175
|
+
scan_ids = results.keys()
|
2176
|
+
return [TomoscanFactory.create_tomo_object_from_identifier(scan_id) for scan_id in scan_ids]
|
2177
|
+
|
2129
2178
|
def dump_stiching_config_as_nx_process(self, file_path: str, data_path: str, overwrite: bool, process_name: str):
|
2130
2179
|
dict_to_dump = {
|
2131
2180
|
process_name: {
|
@@ -2153,40 +2202,14 @@ class StitchingPostProcAggregation:
|
|
2153
2202
|
"""
|
2154
2203
|
main function
|
2155
2204
|
"""
|
2156
|
-
# retrive results (and wait if some processing are not finished)
|
2157
|
-
results = {}
|
2158
|
-
_logger.info(f"wait for slurm job to be completed")
|
2159
|
-
for obj_id, future in self.futures.items():
|
2160
|
-
results[obj_id] = future.result()
|
2161
|
-
|
2162
|
-
failed = tuple(
|
2163
|
-
filter(
|
2164
|
-
lambda x: x.exception() is not None,
|
2165
|
-
self.futures.values(),
|
2166
|
-
)
|
2167
|
-
)
|
2168
|
-
if len(failed) > 0:
|
2169
|
-
# if some job failed: unseless to do the concatenation
|
2170
|
-
exceptions = " ; ".join([f"{job} : {job.exception()}" for job in failed])
|
2171
|
-
raise RuntimeError(f"some job failed. Won't do the concatenation. Exceptiosn are {exceptions}")
|
2172
|
-
|
2173
|
-
canceled = tuple(
|
2174
|
-
filter(
|
2175
|
-
lambda x: x.cancelled(),
|
2176
|
-
self.futures.values(),
|
2177
|
-
)
|
2178
|
-
)
|
2179
|
-
if len(canceled) > 0:
|
2180
|
-
# if some job canceled: unseless to do the concatenation
|
2181
|
-
raise RuntimeError(f"some job failed. Won't do the concatenation. Jobs are {' ; '.join(canceled)}")
|
2182
2205
|
|
2183
2206
|
# concatenate result
|
2184
2207
|
_logger.info("all job succeeded. Concatenate results")
|
2185
2208
|
if isinstance(self._stitching_config, PreProcessedZStitchingConfiguration):
|
2186
2209
|
# 1: case of a pre-processing stitching
|
2210
|
+
scans = self.retrieve_tomo_objects()
|
2187
2211
|
nx_tomos = []
|
2188
|
-
for
|
2189
|
-
scan = TomoscanFactory.create_tomo_object_from_identifier(result)
|
2212
|
+
for scan in scans:
|
2190
2213
|
nx_tomos.append(
|
2191
2214
|
NXtomo().load(
|
2192
2215
|
file_path=scan.master_file,
|
@@ -2217,9 +2240,7 @@ class StitchingPostProcAggregation:
|
|
2217
2240
|
|
2218
2241
|
elif isinstance(self.stitching_config, PostProcessedZStitchingConfiguration):
|
2219
2242
|
# 2: case of a post-processing stitching
|
2220
|
-
outputs_sub_volumes =
|
2221
|
-
TomoscanFactory.create_tomo_object_from_identifier(result) for result in results.keys()
|
2222
|
-
]
|
2243
|
+
outputs_sub_volumes = self.retrieve_tomo_objects()
|
2223
2244
|
concatenate_volumes(
|
2224
2245
|
output_volume=self.stitching_config.output_volume,
|
2225
2246
|
volumes=tuple(outputs_sub_volumes),
|
@@ -2240,6 +2261,8 @@ class StitchingPostProcAggregation:
|
|
2240
2261
|
process_name=process_name,
|
2241
2262
|
overwrite=self.stitching_config.overwrite_results,
|
2242
2263
|
)
|
2264
|
+
else:
|
2265
|
+
raise TypeError(f"stitching_config type ({type(self.stitching_config)}) not handled")
|
2243
2266
|
|
2244
2267
|
|
2245
2268
|
def get_obj_width(obj: Union[NXtomoScan, VolumeBase]) -> int:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: nabu
|
3
|
-
Version: 2024.1.
|
3
|
+
Version: 2024.1.0rc3
|
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>
|
@@ -70,6 +70,7 @@ Requires-Dist: pycuda ; extra == 'full'
|
|
70
70
|
Requires-Dist: scikit-cuda ; extra == 'full'
|
71
71
|
Requires-Dist: pycudwt ; extra == 'full'
|
72
72
|
Requires-Dist: sluurp >=0.3 ; extra == 'full'
|
73
|
+
Requires-Dist: pyvkfft ; extra == 'full'
|
73
74
|
|
74
75
|
# Nabu
|
75
76
|
|
@@ -1,17 +1,18 @@
|
|
1
1
|
doc/conf.py,sha256=3xtCarCHrXPr50GbeRDuH-o3Jzojw7mpr7vpGfZPLAE,3787
|
2
2
|
doc/create_conf_doc.py,sha256=IVOdP70KvbW9WS_UQu3Iyd0YfS60E2fJ5IDtQ_s4cDw,1143
|
3
|
+
doc/doc_config.py,sha256=anqeOVjqE2e7eVzg7yuh9dvIneTkrA5doGl1cVBqT7Q,730
|
3
4
|
doc/get_mathjax.py,sha256=VIvKRCdDuF2VoY8JD3mSey9XX13AZMmwTJBHdt1tUs4,1012
|
4
|
-
nabu/__init__.py,sha256=
|
5
|
+
nabu/__init__.py,sha256=KFgxnRQejwbIvTDyVIZ7pynIPRleDvWZjrxJpc-uKGI,274
|
5
6
|
nabu/tests.py,sha256=cew9OY2uTyncHI_HM32W8CP6B1GTGKaOW65XtMEqs7o,1417
|
6
7
|
nabu/testutils.py,sha256=qqtGgkIhpOpXhgeoXlqCb91Rx-JlI4ALaDF6nt8YRRk,13298
|
7
8
|
nabu/utils.py,sha256=1OKKhQ6-t7OOwTLQkTJuK5Hk9lb7hkEZrDtTdcmvD4c,24164
|
8
9
|
nabu/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
10
|
nabu/app/bootstrap.py,sha256=UQZzCBKtSXtQp5U0aXtlUhbjbwzgILTI4zD4zVffhBI,3246
|
10
|
-
nabu/app/bootstrap_stitching.py,sha256=
|
11
|
+
nabu/app/bootstrap_stitching.py,sha256=Inr0_zRAtyeMTK1BKxGqoDf-Na0O33CICmQJYja06ug,2148
|
11
12
|
nabu/app/cast_volume.py,sha256=60mSXKivRMbK1TA8gsQROX2gmzCunCZG4TVP15t96yA,10928
|
12
|
-
nabu/app/cli_configs.py,sha256=
|
13
|
+
nabu/app/cli_configs.py,sha256=FBh9bG80oY0fwfOntmgqgumS5i120_r60tCsj_mcdvE,22109
|
13
14
|
nabu/app/compare_volumes.py,sha256=Mu5O4uP-ANo-el-fE5PLvEq42BTk5FkrscaFRyQZdis,3341
|
14
|
-
nabu/app/composite_cor.py,sha256=
|
15
|
+
nabu/app/composite_cor.py,sha256=N0Q7dxak7GktcuwxtwQ0PdZcmCS5CboChlxa2UCLMIA,5132
|
15
16
|
nabu/app/correct_rot.py,sha256=K0UQz4l5caFvsSr1-1y5hZvt6e45NAH3qYOhzHm2mGc,2130
|
16
17
|
nabu/app/create_distortion_map_from_poly.py,sha256=5knKx0VLyj-s1ObGwQWlh_ml_Uz4J8jvVBsU9EypLOw,6199
|
17
18
|
nabu/app/diag_to_pix.py,sha256=iSB9gJ5t45Rf025a0yx3Wom9yYRIlvsO8yPvSv5R6MY,15217
|
@@ -19,19 +20,18 @@ nabu/app/diag_to_rot.py,sha256=86lqINSN4SoQ0Eqf0fGYCw-eAhBHm8ds7TDWtLNE6Cg,17111
|
|
19
20
|
nabu/app/double_flatfield.py,sha256=zm9oHWR_QgAV2B3SeNWwgxpJtBsnnWUW4O2lCn5Hjbc,5450
|
20
21
|
nabu/app/generate_header.py,sha256=Voo-FAvwS_mU5gtDxyqpZnSpP_mlMSfd_6bEtgdi_tg,8919
|
21
22
|
nabu/app/histogram.py,sha256=gyLXKwFrU5WPQMkM1k8OdpIXSwGEEKC-f8RcTHKOho4,7930
|
22
|
-
nabu/app/multicor.py,sha256=
|
23
|
+
nabu/app/multicor.py,sha256=7Y-V6IH0L9BBoPa1pW9hbY3CsBvJtABgwRQSwd5dMD8,2996
|
23
24
|
nabu/app/nx_z_splitter.py,sha256=p54jR-PAAw-AkGolM9fZE5lM2vbNLspCNCy5zBnJNP4,4976
|
24
25
|
nabu/app/parse_reconstruction_log.py,sha256=9eiJftCkyNvtZmTDjeOuKgu3a9Fe4KzJcfcI_ZdDlUM,4586
|
25
26
|
nabu/app/prepare_weights_double.py,sha256=5TkhTwNbvgeG8jlDLCwlkeOV_YMINySwdpmjaTM6pbk,5495
|
26
27
|
nabu/app/reconstruct.py,sha256=Lt3Qu11p_eaq4U6tMfQOw-gRSfGhgFwPms2LkjbZaWY,3968
|
27
28
|
nabu/app/reconstruct_helical.py,sha256=odjjCtq12vV_oGIpcK_P00nmH8YlFtq0_r28eBb-O_0,4454
|
28
|
-
nabu/app/reduce_dark_flat.py,sha256=
|
29
|
+
nabu/app/reduce_dark_flat.py,sha256=fkUuVEgU54m9IeoJSHBL9hZ9iyHIOMYO8QjAZIZcXq4,6586
|
29
30
|
nabu/app/rotate.py,sha256=Rj8W7UDZHS4FLgMsGq4xvHfOujWJsyVexn-NOg3Gja0,6445
|
30
31
|
nabu/app/shrink_dataset.py,sha256=P9dorO0Q-gPAWgSHyZi3XQp4jkMTJacDYzNvJY4oh98,3507
|
31
|
-
nabu/app/stitching.py,sha256=
|
32
|
+
nabu/app/stitching.py,sha256=Ibp1oVokLVMz-VX762j1C0E88Di0YJvRt-b8NjGoe7g,3310
|
32
33
|
nabu/app/utils.py,sha256=XUBRWDmth4i3BZHd27rfarFAUP7OEcsMeVmDJ6T4EXA,1178
|
33
34
|
nabu/app/validator.py,sha256=IR-DcUV5h1Fc5CChBfBIaglrGpfKNICX7tGirAroMiw,3368
|
34
|
-
nabu/app/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
35
|
nabu/app/tests/test_reduce_dark_flat.py,sha256=T-_zyzD0-f2c5Z-tlzmRF5p3vPtyL2RFb-D5fIYYEoM,2641
|
36
36
|
nabu/cuda/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
37
|
nabu/cuda/convolution.py,sha256=n8KsJ7IZdPOs_K5QZC6qblnOvIKYwxtdt03oNa0GiMU,241
|
@@ -62,7 +62,7 @@ nabu/cuda/src/transpose.cu,sha256=Enim7vLxTCFZbK3BmYdQ6ZatA_FLp6601VOSl8iGFjg,47
|
|
62
62
|
nabu/cuda/tests/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
63
63
|
nabu/estimation/__init__.py,sha256=HWE3ivArjlJx4FjFh2Q73VmpIyzod80KTmXvFo1AP1s,379
|
64
64
|
nabu/estimation/alignment.py,sha256=bG5eskq-bGOdyRpxZ1t-udbcwKOvHUn6C4HmUrNOX9c,21584
|
65
|
-
nabu/estimation/cor.py,sha256=
|
65
|
+
nabu/estimation/cor.py,sha256=dG-Yg8o_sKJkmb9ghVnV-W1Zm0otJBg9MINBiEVKbdY,68114
|
66
66
|
nabu/estimation/cor_sino.py,sha256=xbTD-F3eemUuvsyV6dmJOTxSOL-KI15-JNPMC3S9ZAU,6394
|
67
67
|
nabu/estimation/distortion.py,sha256=DEXizQpgHBXmrhbQ0kuEchicxmiDgmU2qrh8bCgSezg,4701
|
68
68
|
nabu/estimation/focus.py,sha256=5Ot97-SfhdoaZaske3J_ZdPLIPGswovmGxmPM6ir2BU,15765
|
@@ -71,7 +71,7 @@ nabu/estimation/translation.py,sha256=L-SCLozW1I-FyGta9LjbNPLYRnaznwenF-p9rISM2p
|
|
71
71
|
nabu/estimation/utils.py,sha256=m1dYxyU1uSmyjRkPDhfXFzZ_o2mw8X2ApmvCC1MsvlQ,1401
|
72
72
|
nabu/estimation/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
73
73
|
nabu/estimation/tests/test_alignment.py,sha256=odDbSXGPZz-aqCkPfFrZqqMp4NDz-4Sju87vWrOdA30,2491
|
74
|
-
nabu/estimation/tests/test_cor.py,sha256=
|
74
|
+
nabu/estimation/tests/test_cor.py,sha256=TND-fGoupHQFhp-omp6SQFETxZAaL0WyjC5JZNzCvmI,21268
|
75
75
|
nabu/estimation/tests/test_focus.py,sha256=deaVGbIFSzHDAReoeAy-1HLsnKWpJQsC2SL9WTWEV6o,4170
|
76
76
|
nabu/estimation/tests/test_tilt.py,sha256=PN4tnV3-XU2nNA608kQShaHugWn_-wbHzWCTnLIaCTk,1658
|
77
77
|
nabu/estimation/tests/test_translation.py,sha256=RkOnCYgk9DZGKlIka1snqTv4wbIz_nG7-EHAxnBHsJU,2999
|
@@ -82,7 +82,7 @@ nabu/io/reader.py,sha256=1DlUYObfOBEGYJHEqyw1Mb2uQ_b_Z7-FFqMWS-4tIB0,23083
|
|
82
82
|
nabu/io/reader_helical.py,sha256=_6vZBH-US_VT7oOGJUtYXqPwFws7xZKcmdOthpwvlIQ,4477
|
83
83
|
nabu/io/tiffwriter_zmm.py,sha256=ykaSFqdbYhGNxdBrJRT_rxihx5wj9G8qMQMI1e07fNk,3838
|
84
84
|
nabu/io/utils.py,sha256=EcaAdjD09h_6dbVX2Bl3xGhK83hXBslixcJ4zn5kfLM,9241
|
85
|
-
nabu/io/writer.py,sha256=
|
85
|
+
nabu/io/writer.py,sha256=cWKY7RcNUztOs1ktzLP2G087fLvq4yNMNdvvBdnoOSk,31417
|
86
86
|
nabu/io/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
87
87
|
nabu/io/tests/test_cast_volume.py,sha256=3zd_aGhMeMPkjg1I3Kq4oKltxwVloizXKgaDV8g_F7Q,10391
|
88
88
|
nabu/io/tests/test_detector_distortion.py,sha256=-l-fl_RmSoZHl9aDoHDoJE13L8w9ghBXGASc9PYGzqw,6341
|
@@ -129,26 +129,26 @@ nabu/pipeline/config_validators.py,sha256=rvK1Q_KmA1LUeNTefNxXCpYfDQ1zAdk1kFePrL
|
|
129
129
|
nabu/pipeline/datadump.py,sha256=Ua4tbzxfGMOiT2-7WZn3IDiJqzzK-TyFuku_XUkH8_Q,6520
|
130
130
|
nabu/pipeline/dataset_validator.py,sha256=b6RYIoaElX8QkqYPFl7KsMU7wai7jJjG6QtTQBvPd_o,9207
|
131
131
|
nabu/pipeline/detector_distortion_provider.py,sha256=ru1AxbcuO-FA8FYooPBWgp1lzdSDUtzFUC1A_sS8jME,920
|
132
|
-
nabu/pipeline/estimators.py,sha256=
|
132
|
+
nabu/pipeline/estimators.py,sha256=ea1ObPhvtceUYP5bkuX185ujh5RU9FcCNMXU-TQuhw8,41146
|
133
133
|
nabu/pipeline/fallback_utils.py,sha256=7ccrKYE-rp3fydb72VA6W0_eKcEoqYBEAPlmij_lyEc,6086
|
134
|
-
nabu/pipeline/params.py,sha256=
|
134
|
+
nabu/pipeline/params.py,sha256=VdrekcxOnbrMzvvLcwEWINiMM0uVKmPxJJBwp3lhHBg,3479
|
135
135
|
nabu/pipeline/processconfig.py,sha256=3wCobeC_gI9OTO7v0Hk-IeEJUdKoavK-OzKLd1da5Dg,8216
|
136
136
|
nabu/pipeline/utils.py,sha256=NONAgBfTfUYvBNfoTqD33MAYaPZyCJL10SnR6B0lLec,3462
|
137
|
-
nabu/pipeline/writer.py,sha256=
|
137
|
+
nabu/pipeline/writer.py,sha256=mUpD0kNHrPQhnHwybMMxA7pjaKi53aP8QLBJsqEcQ-4,7501
|
138
138
|
nabu/pipeline/fullfield/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
139
|
-
nabu/pipeline/fullfield/chunked.py,sha256=
|
139
|
+
nabu/pipeline/fullfield/chunked.py,sha256=qGE9gpww2zPbtPeM1Fe0RPRhl3onqxs8fr3HRug-x6I,36919
|
140
140
|
nabu/pipeline/fullfield/chunked_cuda.py,sha256=aGzjY8MX6OL8auEj6Y0RfOGCmFnczsdfj6-8Net5AbQ,5645
|
141
|
-
nabu/pipeline/fullfield/computations.py,sha256=
|
141
|
+
nabu/pipeline/fullfield/computations.py,sha256=VpIURVXh8EpNSfait_AIFM4Ci-GK_546Wkb-Wn9r31Y,9935
|
142
142
|
nabu/pipeline/fullfield/dataset_validator.py,sha256=sRgUECUc8aOjFbwrW-dHjvIf7K3T40YPSIgt3cInKAc,3055
|
143
|
-
nabu/pipeline/fullfield/nabu_config.py,sha256=
|
143
|
+
nabu/pipeline/fullfield/nabu_config.py,sha256=a0mMoLkvlvHgX6RmUS1m1UhJS-XB3O6wBCnkNoI90Cs,30358
|
144
144
|
nabu/pipeline/fullfield/processconfig.py,sha256=SzA9FA7aK5V13q8f8fFmKvumvK0ATkl5Bi_lAs2r8m8,35658
|
145
145
|
nabu/pipeline/fullfield/reconstruction.py,sha256=Km_ZDtoiDQdX3TdTh6E9bzS5hoMC0jYU5eZWodaLbIg,36627
|
146
146
|
nabu/pipeline/helical/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
147
147
|
nabu/pipeline/helical/dataset_validator.py,sha256=0YQc0hdYdpaXznFaKmlj9SIu7mNs0xXMejcRkhOZHaI,640
|
148
148
|
nabu/pipeline/helical/fbp.py,sha256=0fAz-Fb0Rn_FzellvcS2cy-Wvm-5dxEf494YFt4pLws,5845
|
149
149
|
nabu/pipeline/helical/filtering.py,sha256=vkxiPkUbm8_KtfUbVwPu8WEvibAJII81TqZW8fvRqnM,10234
|
150
|
-
nabu/pipeline/helical/gridded_accumulator.py,sha256=
|
151
|
-
nabu/pipeline/helical/helical_chunked_regridded.py,sha256=
|
150
|
+
nabu/pipeline/helical/gridded_accumulator.py,sha256=me6yW7oPrGnlKy0FJvKe70mjqmy7YmClZTsJKdvGOw4,26308
|
151
|
+
nabu/pipeline/helical/helical_chunked_regridded.py,sha256=D-192oOK4O3yCFPEATMKyp9cZBNy06ZiFRcB8RECiGw,68449
|
152
152
|
nabu/pipeline/helical/helical_chunked_regridded_cuda.py,sha256=DqNM3fx2a_HsHmpY48MBCYK0pdJNXeu7nKKfFFFNW6I,3863
|
153
153
|
nabu/pipeline/helical/helical_reconstruction.py,sha256=rkanRA8mYJjzL9eP8v9eHDn-w00YPzySS1S_hHh3N98,24060
|
154
154
|
nabu/pipeline/helical/helical_utils.py,sha256=uFAQHDqENHqQWUpu1n99dnBCCKOlkgjDjvYORY6XFY0,1439
|
@@ -158,11 +158,11 @@ nabu/pipeline/helical/span_strategy.py,sha256=7zV_Oo_liFiuv6m70o08XyoEIo_7QYs7MV
|
|
158
158
|
nabu/pipeline/helical/utils.py,sha256=51Qbh8db6-DX0iB9B9Kb07uwIG6_upAJg_8nhyzbB7o,1555
|
159
159
|
nabu/pipeline/helical/weight_balancer.py,sha256=j0TGe50tbbsilQvml9CgMxeSy83CNaifHj-xuMGl8uE,3981
|
160
160
|
nabu/pipeline/helical/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
161
|
-
nabu/pipeline/helical/tests/test_accumulator.py,sha256=
|
161
|
+
nabu/pipeline/helical/tests/test_accumulator.py,sha256=nNHwqUgSyUpdZVYNVyxqekj0SoThCF8s-8o3NfSw6vI,6416
|
162
162
|
nabu/pipeline/helical/tests/test_pipeline_elements_full.py,sha256=zeR9SaeD0mnhtKU7qo4Qrn_lg1I1Vhg4dqzj6jy8tpg,14569
|
163
163
|
nabu/pipeline/helical/tests/test_strategy.py,sha256=rt8SsUHBMMcVFl48kRGcOyf1y4bYqaA2xDznQxE7wFs,2721
|
164
164
|
nabu/pipeline/tests/test_chunk_reader.py,sha256=Z5N620l4jZmG_15v5GPbqf4LgZeO2hJvcsptq_YpltU,3641
|
165
|
-
nabu/pipeline/tests/test_estimators.py,sha256
|
165
|
+
nabu/pipeline/tests/test_estimators.py,sha256=6VK7fxxfrRTWSSi2bhHqbLy8pZJ2DALO1gJkuxpLDSQ,8392
|
166
166
|
nabu/pipeline/xrdct/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
167
167
|
nabu/preproc/__init__.py,sha256=dKxvZvWZXjKS3iPRaSXiUeM2dNGIOyTlirq5pdAWY0Y,284
|
168
168
|
nabu/preproc/alignment.py,sha256=WDSPIlogwPfQDTqEyRH_ovaQ7vCpnR6XE_Ycif1wP0I,379
|
@@ -265,14 +265,14 @@ nabu/resources/tests/test_nxflatfield.py,sha256=wLcBYpeD1UHGbimRrisGzgS9oVnQ8nNz
|
|
265
265
|
nabu/resources/tests/test_units.py,sha256=F2jFTck-1UwYET1MwTtX6ntzYUosfwOJkugSencGgz8,2155
|
266
266
|
nabu/stitching/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
267
267
|
nabu/stitching/alignment.py,sha256=MSj-6npGfUnD3C5R5rqKwTogVRUDPmJuEZkPG9hMiUY,6752
|
268
|
-
nabu/stitching/config.py,sha256=
|
268
|
+
nabu/stitching/config.py,sha256=sFGcrs05KA5HH4auIU1gONtM2d2YCAjmibHxdwet_ww,51360
|
269
269
|
nabu/stitching/definitions.py,sha256=RyqzZY3KLwN4j0SkOFA-T1aicPbO2jBrqfWdz-1djxk,130
|
270
270
|
nabu/stitching/frame_composition.py,sha256=OGM9cLrLfEP5_hvhDbNq_zr2wdMeAuTTNlVqZk-qVBU,5889
|
271
271
|
nabu/stitching/overlap.py,sha256=eXAKsILS5jwqFY62JhDijeNW8H50rP-yjdUUGqjj0aY,15700
|
272
272
|
nabu/stitching/sample_normalization.py,sha256=_radin_wxnuD3MMmZNAOKA__aPa2z3ss4TFbZeocpXc,2069
|
273
273
|
nabu/stitching/slurm_utils.py,sha256=sZ-VQPh_YlJ1Lkh7ap8qxII0rBpZryMyoxE5Xn557t8,8906
|
274
274
|
nabu/stitching/utils.py,sha256=kMn2JEMDhcBQMweSlM0rUd-037H7iNUURTFMhXOTzC8,23651
|
275
|
-
nabu/stitching/z_stitching.py,sha256=
|
275
|
+
nabu/stitching/z_stitching.py,sha256=yI0jmmP3y_0VrbzYUBXT9x3F0KIBwNOAuTdQ3nlCdsM,103356
|
276
276
|
nabu/stitching/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
277
277
|
nabu/stitching/tests/test_alignment.py,sha256=MACak1ILOr8nRKeT0mWfMd-ZvhCl3SWjjcp6GjRbITc,2735
|
278
278
|
nabu/stitching/tests/test_config.py,sha256=ttWuVB9Y_MM3_wGdKbcbYi_PG3vN87cL7o5zKsMzn9g,8490
|
@@ -288,9 +288,9 @@ nabu/thirdparty/pore3d_deringer_munch.py,sha256=o4bisnFc-wMjuohWBT8wgWmfNehPQGtC
|
|
288
288
|
nabu/thirdparty/tomocupy_remove_stripe.py,sha256=VgXHr2tzTAAGZix5pwhFfbPxj4tt3yXBcjCPNQSLPAg,22810
|
289
289
|
nabu/thirdparty/tomopy_phase.py,sha256=hK4oPpkogLOhv23XzzEXQY2u3r8fJvASY_bINVs6ERE,8634
|
290
290
|
nabu/thirdparty/tomwer_load_flats_darks.py,sha256=ZNoVAinUb_wGYbfvs_4BVnWsjsQmNxSvCh1bWhR2WWg,5611
|
291
|
-
nabu-2024.1.
|
292
|
-
nabu-2024.1.
|
293
|
-
nabu-2024.1.
|
294
|
-
nabu-2024.1.
|
295
|
-
nabu-2024.1.
|
296
|
-
nabu-2024.1.
|
291
|
+
nabu-2024.1.0rc3.dist-info/LICENSE,sha256=1eAIPSnEsnSFNUODnLtNtQTs76exG3ZxJ1DJR6zoUBA,1066
|
292
|
+
nabu-2024.1.0rc3.dist-info/METADATA,sha256=q6_cXr8-lpZGerhGxTc_pnfMqRob6c0KXEbSL8Xv4d4,5229
|
293
|
+
nabu-2024.1.0rc3.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
294
|
+
nabu-2024.1.0rc3.dist-info/entry_points.txt,sha256=cJKGkBeykVL7uK3E4R0RLRqMXifTL2qdO573syPAvJc,1288
|
295
|
+
nabu-2024.1.0rc3.dist-info/top_level.txt,sha256=fsm_N3eXLRZk2QXF9OSKPNDPFXOz8FAQjHh5avT3dok,9
|
296
|
+
nabu-2024.1.0rc3.dist-info/RECORD,,
|
nabu/app/tests/__init__.py
DELETED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|