tomwer 1.4.6__py3-none-any.whl → 1.4.8__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.
- orangecontrib/tomwer/tests/TestAcquisition.py +1 -3
- orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +25 -0
- tomwer/app/__init__.py +1 -2
- tomwer/app/axis.py +1 -2
- tomwer/app/canvas.py +1 -2
- tomwer/app/diffframe.py +1 -2
- tomwer/app/imagekeyeditor.py +1 -2
- tomwer/app/imagekeyupgrader.py +1 -2
- tomwer/app/multicor.py +1 -2
- tomwer/app/multipag.py +1 -2
- tomwer/app/nabuapp.py +1 -2
- tomwer/app/nxtomoeditor.py +1 -2
- tomwer/app/patchrawdarkflat.py +1 -2
- tomwer/app/radiostack.py +1 -2
- tomwer/app/reducedarkflat.py +1 -2
- tomwer/app/samplemoved.py +1 -2
- tomwer/app/scanviewer.py +1 -2
- tomwer/app/sinogramviewer.py +1 -2
- tomwer/core/__init__.py +1 -2
- tomwer/core/cluster/__init__.py +1 -2
- tomwer/core/futureobject.py +1 -2
- tomwer/core/log/__init__.py +1 -2
- tomwer/core/process/cluster/supervisor.py +1 -2
- tomwer/core/process/drac/processeddataset.py +14 -0
- tomwer/core/process/reconstruction/axis/axis.py +1 -2
- tomwer/core/process/reconstruction/nabu/castvolume.py +17 -1
- tomwer/core/process/reconstruction/nabu/nabucommon.py +1 -2
- tomwer/core/process/reconstruction/output.py +2 -0
- tomwer/core/process/reconstruction/saaxis/saaxis.py +1 -2
- tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +1 -2
- tomwer/core/utils/__init__.py +1 -2
- tomwer/gui/cluster/__init__.py +1 -2
- tomwer/gui/conditions/__init__.py +1 -2
- tomwer/gui/configuration/__init__.py +1 -2
- tomwer/gui/control/__init__.py +1 -2
- tomwer/gui/dataportal/__init__.py +1 -2
- tomwer/gui/debugtools/__init__.py +1 -2
- tomwer/gui/dialog/QDataDialog.py +1 -2
- tomwer/gui/dialog/QVolumeDialog.py +1 -2
- tomwer/gui/edit/__init__.py +1 -2
- tomwer/gui/imagefromfile.py +1 -2
- tomwer/gui/metadataloader.py +1 -2
- tomwer/gui/qconfigfile.py +1 -2
- tomwer/gui/qlefilesystem.py +1 -2
- tomwer/gui/reconstruction/__init__.py +1 -2
- tomwer/gui/settings.py +1 -2
- tomwer/gui/stackplot.py +1 -2
- tomwer/gui/stitching/__init__.py +1 -2
- tomwer/gui/utils/slider.py +1 -2
- tomwer/gui/visualization/__init__.py +1 -2
- tomwer/io/__init__.py +1 -2
- tomwer/version.py +1 -1
- {tomwer-1.4.6.dist-info → tomwer-1.4.8.dist-info}/METADATA +3 -2
- {tomwer-1.4.6.dist-info → tomwer-1.4.8.dist-info}/RECORD +58 -60
- orangecontrib/tomwer/tutorials/test_cor.ows +0 -19
- tomwer/tasks/reconstruction/cleardarkflat.py +0 -38
- {tomwer-1.4.6.dist-info → tomwer-1.4.8.dist-info}/LICENSE +0 -0
- {tomwer-1.4.6.dist-info → tomwer-1.4.8.dist-info}/WHEEL +0 -0
- {tomwer-1.4.6.dist-info → tomwer-1.4.8.dist-info}/entry_points.txt +0 -0
- {tomwer-1.4.6.dist-info → tomwer-1.4.8.dist-info}/top_level.txt +0 -0
@@ -13,6 +13,9 @@ from tomwer.core.cluster.cluster import SlurmClusterConfiguration
|
|
13
13
|
from tomwer.core.futureobject import FutureTomwerObject
|
14
14
|
from tomwer.core.scan.scanbase import TomwerScanBase
|
15
15
|
from tomwer.core.volume.volumebase import TomwerVolumeBase
|
16
|
+
from tomwer.core.process.drac.processeddataset import (
|
17
|
+
DracReconstructedVolumeDataset,
|
18
|
+
)
|
16
19
|
from tomwer.gui.reconstruction.nabu.castvolume import CastVolumeWidget
|
17
20
|
from tomwer.gui.utils.qt_utils import block_signals
|
18
21
|
|
@@ -101,6 +104,11 @@ class CastNabuVolumeOW(WidgetLongProcessing, SuperviseOW):
|
|
101
104
|
type=FutureTomwerObject,
|
102
105
|
doc="future object (process remotely)",
|
103
106
|
)
|
107
|
+
data_portal_processed_datasets = Output(
|
108
|
+
name="data_portal_processed_datasets",
|
109
|
+
type=tuple,
|
110
|
+
doc="data portal processed data to be saved",
|
111
|
+
)
|
104
112
|
|
105
113
|
def __init__(self, parent=None):
|
106
114
|
""" """
|
@@ -193,11 +201,28 @@ class CastNabuVolumeOW(WidgetLongProcessing, SuperviseOW):
|
|
193
201
|
if future_tomo_obj is not None:
|
194
202
|
self.Outputs.future_tomo_obj.send(future_tomo_obj)
|
195
203
|
if obj is not None:
|
204
|
+
scan = None
|
196
205
|
if isinstance(obj, TomwerScanBase):
|
206
|
+
# case the input object was a scan (expected)
|
197
207
|
self.Outputs.data.send(obj)
|
208
|
+
scan = obj
|
198
209
|
elif isinstance(obj, TomwerVolumeBase):
|
210
|
+
# case the input object was a volume
|
199
211
|
self.Outputs.volume.send(obj)
|
200
212
|
# for now we store a cast_volume to the object but this is not very well design.
|
201
213
|
# I guess this will be removed once we move to ewoks or we need to redesign the stack approach
|
202
214
|
if obj.cast_volume is not None:
|
215
|
+
assert isinstance(obj.cast_volume, TomwerVolumeBase)
|
203
216
|
self.Outputs.cast_volume.send(obj.cast_volume)
|
217
|
+
|
218
|
+
if scan is not None:
|
219
|
+
# case the input object was a scan and we have succeeded to cast the volume
|
220
|
+
# then we can publish to the data portal
|
221
|
+
icatReconstructedDataset = DracReconstructedVolumeDataset(
|
222
|
+
tomo_obj=obj.cast_volume,
|
223
|
+
source_scan=scan,
|
224
|
+
)
|
225
|
+
|
226
|
+
self.Outputs.data_portal_processed_datasets.send(
|
227
|
+
(icatReconstructedDataset,)
|
228
|
+
)
|
tomwer/app/__init__.py
CHANGED
@@ -1,2 +1 @@
|
|
1
|
-
"""This package contains all the applications that can be launched from 'tomwer'
|
2
|
-
"""
|
1
|
+
"""This package contains all the applications that can be launched from 'tomwer'"""
|
tomwer/app/axis.py
CHANGED
tomwer/app/canvas.py
CHANGED
tomwer/app/diffframe.py
CHANGED
tomwer/app/imagekeyeditor.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
#!/usr/bin/env python
|
2
2
|
# -*- coding: utf-8 -*-
|
3
|
-
"""Application to edit (key by key) the 'imagekey' value of a NXtomo ('imagekey' defines if a frame is a 'dark', 'flat' or a 'projection')
|
4
|
-
"""
|
3
|
+
"""Application to edit (key by key) the 'imagekey' value of a NXtomo ('imagekey' defines if a frame is a 'dark', 'flat' or a 'projection')"""
|
5
4
|
import argparse
|
6
5
|
import logging
|
7
6
|
import signal
|
tomwer/app/imagekeyupgrader.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
#!/usr/bin/env python
|
2
2
|
# -*- coding: utf-8 -*-
|
3
|
-
"""Application to edit (group by group) the 'imagekey' value of a NXtomo ('imagekey' defines if a frame is a 'dark', 'flat' or a 'projection')
|
4
|
-
"""
|
3
|
+
"""Application to edit (group by group) the 'imagekey' value of a NXtomo ('imagekey' defines if a frame is a 'dark', 'flat' or a 'projection')"""
|
5
4
|
|
6
5
|
import argparse
|
7
6
|
import logging
|
tomwer/app/multicor.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
#!/usr/bin/env python
|
2
2
|
# -*- coding: utf-8 -*-
|
3
|
-
"""Application to reconstruct a slice for a set of center of rotation value. Interface to nabu multicor
|
4
|
-
"""
|
3
|
+
"""Application to reconstruct a slice for a set of center of rotation value. Interface to nabu multicor"""
|
5
4
|
|
6
5
|
from __future__ import annotations
|
7
6
|
|
tomwer/app/multipag.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
#!/usr/bin/env python
|
2
2
|
# -*- coding: utf-8 -*-
|
3
|
-
"""Application to reconstruct a slice with Paganin for a set of delta/beta values.
|
4
|
-
"""
|
3
|
+
"""Application to reconstruct a slice with Paganin for a set of delta/beta values."""
|
5
4
|
|
6
5
|
from __future__ import annotations
|
7
6
|
|
tomwer/app/nabuapp.py
CHANGED
tomwer/app/nxtomoeditor.py
CHANGED
tomwer/app/patchrawdarkflat.py
CHANGED
tomwer/app/radiostack.py
CHANGED
tomwer/app/reducedarkflat.py
CHANGED
tomwer/app/samplemoved.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
#!/usr/bin/env python
|
2
2
|
# -*- coding: utf-8 -*-
|
3
|
-
"""Application to display a couple of projections at 180 degree and estimate (by eye) if a sample has moved
|
4
|
-
"""
|
3
|
+
"""Application to display a couple of projections at 180 degree and estimate (by eye) if a sample has moved"""
|
5
4
|
|
6
5
|
import argparse
|
7
6
|
import logging
|
tomwer/app/scanviewer.py
CHANGED
tomwer/app/sinogramviewer.py
CHANGED
tomwer/core/__init__.py
CHANGED
@@ -1,2 +1 @@
|
|
1
|
-
"""This package contains all the core functions / classes of tomwer
|
2
|
-
"""
|
1
|
+
"""This package contains all the core functions / classes of tomwer"""
|
tomwer/core/cluster/__init__.py
CHANGED
tomwer/core/futureobject.py
CHANGED
@@ -1,5 +1,4 @@
|
|
1
|
-
"""contains 'FutureTomwerObject'. Class used when computation is done asynchronously (when submitted to slurm for example)
|
2
|
-
"""
|
1
|
+
"""contains 'FutureTomwerObject'. Class used when computation is done asynchronously (when submitted to slurm for example)"""
|
3
2
|
|
4
3
|
from __future__ import annotations
|
5
4
|
|
tomwer/core/log/__init__.py
CHANGED
@@ -1,2 +1 @@
|
|
1
|
-
"""contains some log utils (used to notify processing advancement)
|
2
|
-
"""
|
1
|
+
"""contains some log utils (used to notify processing advancement)"""
|
@@ -10,6 +10,9 @@ from tomwer.core.process.reconstruction.nabu.plane import NabuPlane
|
|
10
10
|
from tomwer.core.process.reconstruction.output import (
|
11
11
|
PROCESS_FOLDER_RECONSTRUCTED_VOLUMES,
|
12
12
|
)
|
13
|
+
from tomwer.core.process.reconstruction.output import (
|
14
|
+
PROCESS_FOLDER_CAST_VOLUME,
|
15
|
+
)
|
13
16
|
|
14
17
|
|
15
18
|
__all__ = ["DracReconstructedVolumeDataset"]
|
@@ -145,3 +148,14 @@ class DracReconstructedVolumeDataset(DracDatasetBase):
|
|
145
148
|
axis_folder,
|
146
149
|
f"{basename}_capture_{axis.value}_{str(slice_index).zfill(6)}",
|
147
150
|
)
|
151
|
+
|
152
|
+
|
153
|
+
class DracCastReconstructedVolume(DracReconstructedVolumeDataset):
|
154
|
+
"""
|
155
|
+
Class to associate casted - reconstructed volume(s) to an drac (processed) dataset
|
156
|
+
"""
|
157
|
+
|
158
|
+
@property
|
159
|
+
def dataset_name(self) -> str:
|
160
|
+
"""name to give to the drac (processed) dataset."""
|
161
|
+
return PROCESS_FOLDER_CAST_VOLUME
|
@@ -28,11 +28,17 @@ from tomwer.core.utils.slurm import get_slurm_script_name
|
|
28
28
|
from tomwer.core.utils.volumeutils import volume_identifier_to_volume
|
29
29
|
from tomwer.core.volume.volumebase import TomwerVolumeBase
|
30
30
|
from tomwer.core.volume.volumefactory import VolumeFactory
|
31
|
+
from tomwer.core.process.drac.processeddataset import (
|
32
|
+
DracReconstructedVolumeDataset,
|
33
|
+
)
|
31
34
|
|
32
35
|
_logger = logging.getLogger(__name__)
|
33
36
|
|
37
|
+
CAST_VOLUME_WORKING_SUB_DIRECTORY = "cast_volume"
|
34
38
|
|
35
|
-
DEFAULT_OUTPUT_DIR =
|
39
|
+
DEFAULT_OUTPUT_DIR = (
|
40
|
+
"{volume_data_parent_folder}" f"/{CAST_VOLUME_WORKING_SUB_DIRECTORY}"
|
41
|
+
)
|
36
42
|
|
37
43
|
|
38
44
|
class CastVolumeTask(
|
@@ -46,6 +52,7 @@ class CastVolumeTask(
|
|
46
52
|
output_names=(
|
47
53
|
"volume",
|
48
54
|
"future_tomo_obj",
|
55
|
+
"data_portal_processed_datasets",
|
49
56
|
),
|
50
57
|
):
|
51
58
|
def __init__(
|
@@ -176,6 +183,7 @@ class CastVolumeTask(
|
|
176
183
|
scan.cast_volume = output_volume.get_identifier()
|
177
184
|
else:
|
178
185
|
input_volume.cast_volume = output_volume.get_identifier()
|
186
|
+
self.outputs.data_portal_processed_datasets = tuple()
|
179
187
|
# run volume cast remotely
|
180
188
|
else:
|
181
189
|
|
@@ -230,6 +238,14 @@ class CastVolumeTask(
|
|
230
238
|
)
|
231
239
|
self.outputs.volume = output_volume
|
232
240
|
|
241
|
+
if scan is not None:
|
242
|
+
drac_reconstructed_dataset = DracReconstructedVolumeDataset(
|
243
|
+
tomo_obj=output_volume,
|
244
|
+
source_scan=scan,
|
245
|
+
)
|
246
|
+
self.outputs.data_portal_processed_datasets = (
|
247
|
+
drac_reconstructed_dataset,
|
248
|
+
)
|
233
249
|
# for now at the task level we consider this is succeed if it has been submitted
|
234
250
|
ProcessManager().notify_dataset_state(
|
235
251
|
dataset=scan or input_volume,
|
tomwer/core/utils/__init__.py
CHANGED
@@ -1,2 +1 @@
|
|
1
|
-
"""Several core utils
|
2
|
-
"""
|
1
|
+
"""Several core utils"""
|
tomwer/gui/cluster/__init__.py
CHANGED
@@ -1,2 +1 @@
|
|
1
|
-
"""Widgets for remote processing
|
2
|
-
"""
|
1
|
+
"""Widgets for remote processing"""
|
@@ -1,2 +1 @@
|
|
1
|
-
"""Widgets for conditions (filters to let a scan continue processing or not)
|
2
|
-
"""
|
1
|
+
"""Widgets for conditions (filters to let a scan continue processing or not)"""
|
@@ -1,2 +1 @@
|
|
1
|
-
"""Widgets to define the configuration level we want to display (display only basic configuration/settings, advance...)
|
2
|
-
"""
|
1
|
+
"""Widgets to define the configuration level we want to display (display only basic configuration/settings, advance...)"""
|
tomwer/gui/control/__init__.py
CHANGED
@@ -1,2 +1 @@
|
|
1
|
-
"""Widgets related to 'control' tasks (select a scan, convert a scan with nxtomomill...)
|
2
|
-
"""
|
1
|
+
"""Widgets related to 'control' tasks (select a scan, convert a scan with nxtomomill...)"""
|
@@ -1,2 +1 @@
|
|
1
|
-
"""Widgets related to icat / drac
|
2
|
-
"""
|
1
|
+
"""Widgets related to icat / drac"""
|
@@ -1,2 +1 @@
|
|
1
|
-
"""Widgets useful to debut a tomography workflow (generate random scan...)
|
2
|
-
"""
|
1
|
+
"""Widgets useful to debut a tomography workflow (generate random scan...)"""
|
tomwer/gui/dialog/QDataDialog.py
CHANGED
tomwer/gui/edit/__init__.py
CHANGED
@@ -1,2 +1 @@
|
|
1
|
-
"""Widgets related to 'control' tasks (select a scan, convert a scan with nxtomomill...)
|
2
|
-
"""
|
1
|
+
"""Widgets related to 'control' tasks (select a scan, convert a scan with nxtomomill...)"""
|
tomwer/gui/imagefromfile.py
CHANGED
tomwer/gui/metadataloader.py
CHANGED
tomwer/gui/qconfigfile.py
CHANGED
tomwer/gui/qlefilesystem.py
CHANGED
@@ -1,2 +1 @@
|
|
1
|
-
"""Widgets related to tomography reconstruction (cor search, nabu volume reconstruction...)
|
2
|
-
"""
|
1
|
+
"""Widgets related to tomography reconstruction (cor search, nabu volume reconstruction...)"""
|
tomwer/gui/settings.py
CHANGED
tomwer/gui/stackplot.py
CHANGED
@@ -1,5 +1,4 @@
|
|
1
|
-
"""Contains the QImageFileStackPlot. Widget to display a set of files with metadata (either scan or volume metadata)
|
2
|
-
"""
|
1
|
+
"""Contains the QImageFileStackPlot. Widget to display a set of files with metadata (either scan or volume metadata)"""
|
3
2
|
|
4
3
|
from __future__ import annotations
|
5
4
|
|
tomwer/gui/stitching/__init__.py
CHANGED
@@ -1,2 +1 @@
|
|
1
|
-
"""Widgets for stitching scans or volumes
|
2
|
-
"""
|
1
|
+
"""Widgets for stitching scans or volumes"""
|
tomwer/gui/utils/slider.py
CHANGED
@@ -1,2 +1 @@
|
|
1
|
-
"""Widgets for displaying data (sinogram, browsing scans, display reconstructed volumes...)
|
2
|
-
"""
|
1
|
+
"""Widgets for displaying data (sinogram, browsing scans, display reconstructed volumes...)"""
|
tomwer/io/__init__.py
CHANGED
@@ -1,2 +1 @@
|
|
1
|
-
"""This package provides functionalities for inputs and outputs (read, write)
|
2
|
-
"""
|
1
|
+
"""This package provides functionalities for inputs and outputs (read, write)"""
|
tomwer/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: tomwer
|
3
|
-
Version: 1.4.
|
3
|
+
Version: 1.4.8
|
4
4
|
Summary: "tomography workflow tools"
|
5
5
|
Home-page: https://gitlab.esrf.fr/tomotools/tomwer
|
6
6
|
Author: Henri Payno, Pierre Paleo, Pierre-Olivier Autran, Jérôme Lesaint, Alessandro Mirone
|
@@ -24,12 +24,13 @@ License-File: LICENSE
|
|
24
24
|
Requires-Dist: numpy
|
25
25
|
Requires-Dist: setuptools
|
26
26
|
Requires-Dist: psutil
|
27
|
-
Requires-Dist: silx[full]
|
27
|
+
Requires-Dist: silx[full]<2.1.1,>=2.0
|
28
28
|
Requires-Dist: tomoscan>=2.1.0a18
|
29
29
|
Requires-Dist: nxtomo>=1.3.0dev4
|
30
30
|
Requires-Dist: nxtomomill>=1.1.0a0
|
31
31
|
Requires-Dist: processview>=1.5.0
|
32
32
|
Requires-Dist: ewoks>=0.1.1
|
33
|
+
Requires-Dist: ewokscore<1.1.0
|
33
34
|
Requires-Dist: sluurp>=0.4.1
|
34
35
|
Requires-Dist: packaging
|
35
36
|
Requires-Dist: pyunitsystem>=2.0.0a
|
@@ -3,7 +3,7 @@ orangecontrib/tomwer/state_summary.py,sha256=5_dPzweL3r0ye4ZfJo6IV2ThJI8fQhWoO2y
|
|
3
3
|
orangecontrib/tomwer/orange/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
orangecontrib/tomwer/orange/managedprocess.py,sha256=0OMlOYnNq5hC-t6CWtDaERQ9k0bNMGaLzVT9fDyM1LE,3512
|
5
5
|
orangecontrib/tomwer/orange/settings.py,sha256=osaHvnyE1NJwAWHQoKHtageey1giRQCdBmpTY_zeWoA,720
|
6
|
-
orangecontrib/tomwer/tests/TestAcquisition.py,sha256=
|
6
|
+
orangecontrib/tomwer/tests/TestAcquisition.py,sha256=UAnXV4qpZY9yEFG3ZFlrvo7HJC6L-ao387zXX844WF8,7780
|
7
7
|
orangecontrib/tomwer/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
8
|
orangecontrib/tomwer/tutorials/EBS_tomo_listener.ows,sha256=GLHvcQnR79X2sTDqIq9h4ayb3Tya7S-givzPta63ciQ,4747
|
9
9
|
orangecontrib/tomwer/tutorials/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -18,7 +18,6 @@ orangecontrib/tomwer/tutorials/simple_slice_reconstruction.ows,sha256=O9Bnunjh0Q
|
|
18
18
|
orangecontrib/tomwer/tutorials/simple_slice_reconstruction_on_slurm.ows,sha256=t-fwTMCvqQV17AIZWM0lSCmjC6loLEHNZSFmAADF9xY,6584
|
19
19
|
orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows,sha256=BBxkMX98PjDZsgxiVz4i-xPFw4WMdzif2YPnRQfONP4,5945
|
20
20
|
orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows,sha256=qjwsBFk4Bq_Enr3eolCb5oRgH-jMiY1ljqi79JXgjcM,9159
|
21
|
-
orangecontrib/tomwer/tutorials/test_cor.ows,sha256=tlpNXVRRhGQR5yGMvWvVR5DqVyl1G3f8hSQ8u17hmLU,2464
|
22
21
|
orangecontrib/tomwer/tutorials/using_saaxis_to_find_cor.ows,sha256=TUZNkXEsQyj7Qra1GEb4IhGFDWv3uJzqXbp3P04jwbs,5192
|
23
22
|
orangecontrib/tomwer/tutorials/volume_casting_on_slurm.ows,sha256=yKa6pvd4UB6XDDlj_o7T8Md6bI8aQJXMCUnxyecdXbc,7568
|
24
23
|
orangecontrib/tomwer/tutorials/id16b/ID16b_full_volume.ows,sha256=eSxYxrZ-0WKsmDqXivsHxND7SR2dSwdgG6Wcjbr06Ew,1727
|
@@ -149,7 +148,7 @@ orangecontrib/tomwer/widgets/other/icons/hub.png,sha256=wnKSaxw2WnBkSQjI86aLZfdm
|
|
149
148
|
orangecontrib/tomwer/widgets/other/icons/hub.svg,sha256=9EYoBKY-P-cO17nM48OPA9VDZSCbyGtrMRc80BGHflk,3735
|
150
149
|
orangecontrib/tomwer/widgets/other/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
151
150
|
orangecontrib/tomwer/widgets/reconstruction/AxisOW.py,sha256=Qz6r34NdNgBvn-UwbIhPQDDCgtlXa_rSLnCEIuI_mrQ,20067
|
152
|
-
orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py,sha256=
|
151
|
+
orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py,sha256=sqpWF769TJ07ApEMqdz0BUWiXoKnZ8k2Fg1yfBaqdIc,8668
|
153
152
|
orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py,sha256=flRgeOXimjzKEtL6h-0hwaa04G-BqMydv0Ju5r0Reao,9696
|
154
153
|
orangecontrib/tomwer/widgets/reconstruction/NabuHelicalPrepareWeightsDoubleOW.py,sha256=NjMC0BEmPhDZ795Q-yyL81-hluAyGE8MRiq8xMdqAqY,6233
|
155
154
|
orangecontrib/tomwer/widgets/reconstruction/NabuOW.py,sha256=UvCNwpAtQ1AdCl5kUw13QsKxesIDV8SIjIW9cWCXIMc,9946
|
@@ -220,27 +219,27 @@ orangecontrib/tomwer/widgets/visualization/tests/__init__.py,sha256=47DEQpj8HBSa
|
|
220
219
|
tomwer/__init__.py,sha256=cMIyH-uRxpa9WVnAuWjiBD7k9TK57WO21RzP_S-Mb8I,460
|
221
220
|
tomwer/__main__.py,sha256=7tCADiS4u7k1PCxFhlRAcYSIOpxQTGUTx8sCEQ-hi1E,8707
|
222
221
|
tomwer/utils.py,sha256=7h7dEgKAEUmQ43jkULvC1B9Adl55nkCty-SEKUKCl4U,7008
|
223
|
-
tomwer/version.py,sha256=
|
224
|
-
tomwer/app/__init__.py,sha256=
|
225
|
-
tomwer/app/axis.py,sha256=
|
226
|
-
tomwer/app/canvas.py,sha256=
|
222
|
+
tomwer/version.py,sha256=9eVN2X5pHYpA_0DB79D32-UlghmotJxh_g2O_lUlL70,4386
|
223
|
+
tomwer/app/__init__.py,sha256=h1FKED7Tw5f99yikygt7ruXsdrxQhcJxO7kagLGxhJg,84
|
224
|
+
tomwer/app/axis.py,sha256=lB-IZx1o6KTWLIelITvYCIu2flFTB9NhuIfD2MhUZZA,5826
|
225
|
+
tomwer/app/canvas.py,sha256=y8rYOiwmv6ug7JcjgkOzEiGQnNXjKWNNmKofT0n8TFg,1538
|
227
226
|
tomwer/app/darkref.py,sha256=SnSKtLa6K1jmHfyqQfsuhJ7EC4g04ejTrhJa9pzC4S8,276
|
228
227
|
tomwer/app/darkrefpatch.py,sha256=Zzl1zdBHEDgAPd5J7agaaK1GN3uQjxePRRCaLpXL6A8,285
|
229
|
-
tomwer/app/diffframe.py,sha256=
|
230
|
-
tomwer/app/imagekeyeditor.py,sha256=
|
231
|
-
tomwer/app/imagekeyupgrader.py,sha256=
|
228
|
+
tomwer/app/diffframe.py,sha256=qe5D_UKKvzYLSI6RuVCIGRGG6gKG1vAWhs1wi0QMAME,3230
|
229
|
+
tomwer/app/imagekeyeditor.py,sha256=FWeu9ITw3Ic9YxjAAL29dfa0FSMFH16QbpyUlqlOZuY,2962
|
230
|
+
tomwer/app/imagekeyupgrader.py,sha256=qLbfWPz68b2DxMYNd5MlIyZdQ12YQ7F-KUA92RcI01A,3363
|
232
231
|
tomwer/app/intensitynormalization.py,sha256=5uT8xQWjjq7uV8-0jru_2Qf9SIN5ooVCPH8Ok8inMYE,5998
|
233
|
-
tomwer/app/multicor.py,sha256=
|
234
|
-
tomwer/app/multipag.py,sha256=
|
235
|
-
tomwer/app/nabuapp.py,sha256=
|
236
|
-
tomwer/app/nxtomoeditor.py,sha256=
|
237
|
-
tomwer/app/patchrawdarkflat.py,sha256=
|
238
|
-
tomwer/app/radiostack.py,sha256=
|
239
|
-
tomwer/app/reducedarkflat.py,sha256=
|
232
|
+
tomwer/app/multicor.py,sha256=NgSYIh1CTM1ssD5fXfH4j9MM3HU_NUEx_4EIWehijMs,8900
|
233
|
+
tomwer/app/multipag.py,sha256=LHk4-97aYqFQ9UgQb8mYW1_nkUQBbgUxee4RinloCjk,12016
|
234
|
+
tomwer/app/nabuapp.py,sha256=f8mao2GprCN-CCTFHUlrCLoxFNZmMpzegrlMNnyE_XI,7643
|
235
|
+
tomwer/app/nxtomoeditor.py,sha256=1Wj59ZF3QvDBmUkUosxZlxvOM-mCvs74l1YJe3tFtwQ,3012
|
236
|
+
tomwer/app/patchrawdarkflat.py,sha256=0s4Uk7rlF6VYcwKAysxj5ncP7jTgDL9XIiMPqZUktvg,3779
|
237
|
+
tomwer/app/radiostack.py,sha256=S6VB7BSmpfFdnGEyX_7wvLFiOtbtlEwgP7PEUAJLN4w,2640
|
238
|
+
tomwer/app/reducedarkflat.py,sha256=XAiZbhqpZpYTWqYLJ6E66kwVQHmOfljlW3AlOQBJxJA,6572
|
240
239
|
tomwer/app/rsync.py,sha256=eT8HoSOp56SqbjKKm3DQ0tl5wfGaDhE3O5XzZBlzkx0,4081
|
241
|
-
tomwer/app/samplemoved.py,sha256=
|
242
|
-
tomwer/app/scanviewer.py,sha256=
|
243
|
-
tomwer/app/sinogramviewer.py,sha256=
|
240
|
+
tomwer/app/samplemoved.py,sha256=EXpP9sW18Nfhi0MHwNwSuea6ZmGK61YAvzJ9qXSO4cs,2638
|
241
|
+
tomwer/app/scanviewer.py,sha256=MSMxnNATEl2Xb_cdRsurY_6UyLg5vI7w6LpOT-PnzRs,2749
|
242
|
+
tomwer/app/sinogramviewer.py,sha256=dFlsENEghcGcMiurjeDXsqCe2_SasDSNK9DOoIImg2U,3729
|
244
243
|
tomwer/app/slicestack.py,sha256=7ZNDEyp0dUzcMH0LtQPBF2Fu0gCUDVDrfZBC_wx3p_s,2437
|
245
244
|
tomwer/app/stopdatalistener.py,sha256=WADEHM5LHHjWP2HM-ru-RinXWzvV3PQv72E5Y1XeioY,1037
|
246
245
|
tomwer/app/ystitching.py,sha256=QvXUHBnmr3R--lTvd_RkjpXMAedbnpiC01bSD99_BPE,562
|
@@ -254,22 +253,22 @@ tomwer/app/canvas_launcher/utils.py,sha256=4zWaao2EW5OcKomAw38YUIUgOLfkUPGdPCqLs
|
|
254
253
|
tomwer/app/canvas_launcher/widgetsscheme.py,sha256=9Or1KMmSxIs_dJmJGV0Xhjg9HH4m8aPGbtiEuK2i6q0,2744
|
255
254
|
tomwer/app/stitching/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
256
255
|
tomwer/app/stitching/common.py,sha256=TCXNnAz2MSJrrogB5iWptktxq-g5ED2FUt_jMnDXpnQ,14723
|
257
|
-
tomwer/core/__init__.py,sha256
|
258
|
-
tomwer/core/futureobject.py,sha256=
|
256
|
+
tomwer/core/__init__.py,sha256=-EtD8J-a7WVnCgYS7WHkisYn61iM2PpHWcXwE5BetJ8,71
|
257
|
+
tomwer/core/futureobject.py,sha256=8Sd9gOrdhYc0PvzPeZPBNOmaHuwB5epG6RJyABRsCmQ,5113
|
259
258
|
tomwer/core/resourcemanager.py,sha256=VLNnVodMa-HOMZhN2qpUR_L6phJ8IHPUEPYMxuW6VHg,1067
|
260
259
|
tomwer/core/settings.py,sha256=57qD44LU_3eB50rD7RHdg5nBweiHerzWbXHcBUna6gY,4089
|
261
260
|
tomwer/core/signal.py,sha256=I5TUcyeBZzrEh1SFGs-ylJSL1aBs41ZFb3IJo3O_55c,6115
|
262
261
|
tomwer/core/tomwer_object.py,sha256=rIaD1QlN3Q0cR5h9Sap1Whn4lawu5z9zZ1KspdhYbg0,2023
|
263
|
-
tomwer/core/cluster/__init__.py,sha256
|
262
|
+
tomwer/core/cluster/__init__.py,sha256=w58VJZaGwC-8hwHLADeJrW9-rs-PrVz6few3AqpScqQ,116
|
264
263
|
tomwer/core/cluster/cluster.py,sha256=1dSIf5kmzyjOLZaVGkcnE0i-D6bRKazDV0TXPHJvSyQ,4424
|
265
|
-
tomwer/core/log/__init__.py,sha256=
|
264
|
+
tomwer/core/log/__init__.py,sha256=OB8j-nJvheD9_o9SkU3VLy-sOcZFQnH6o3m1RG_9WN8,70
|
266
265
|
tomwer/core/log/processlog.py,sha256=Go7hcznjw2ZazQQYVJbCTcrnZjatlh2PBoD6oYkelAQ,2342
|
267
266
|
tomwer/core/process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
268
267
|
tomwer/core/process/output.py,sha256=DFHJX0nOGMX1_nO5elviwRMT0ICjrtYrZp0hzhWs75A,1841
|
269
268
|
tomwer/core/process/task.py,sha256=0TqjX-bpCFvtqXGBC4WlBgMMnyh5bTEuvBHfA6U2igw,3411
|
270
269
|
tomwer/core/process/utils.py,sha256=ynblJtgrObyupOice614G1qdrG6IL2t-vVPtlv15e3c,2634
|
271
270
|
tomwer/core/process/cluster/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
272
|
-
tomwer/core/process/cluster/supervisor.py,sha256=
|
271
|
+
tomwer/core/process/cluster/supervisor.py,sha256=t7LlcfzEewQCECHFVKsd3mv_iZp_IHFnr1_hYKviBGg,2526
|
273
272
|
tomwer/core/process/conditions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
274
273
|
tomwer/core/process/conditions/filters.py,sha256=xOSQsfJA5aafgzQhMLhSo--mNAuRMUSKmbPugktUogM,5833
|
275
274
|
tomwer/core/process/control/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -304,7 +303,7 @@ tomwer/core/process/drac/binning.py,sha256=uWIyAzQMhUjh5d74DUnbDgjRv4zMZtdbi6U0W
|
|
304
303
|
tomwer/core/process/drac/dracbase.py,sha256=_EYcZscvNpLpSc6cuy6nmNKYWo2C8u6Ke_oXrLjOBiM,5639
|
305
304
|
tomwer/core/process/drac/gallery.py,sha256=bQosh4xbTWj8Vn_vqepyJ1QMfLcVGxh7uPJ0ysLtx5o,4790
|
306
305
|
tomwer/core/process/drac/output.py,sha256=ySwvMigBVvtQqrkG67jq384uevVKeOX-Vd8E2urs_Lg,235
|
307
|
-
tomwer/core/process/drac/processeddataset.py,sha256=
|
306
|
+
tomwer/core/process/drac/processeddataset.py,sha256=pp4uW249k7qFb1q1yZCtU1fbjoD9Y9onL5w3mOcxrWU,5839
|
308
307
|
tomwer/core/process/drac/publish.py,sha256=S6UZ39Mv0I9A5bKQig5zohFenRPonu-oxK6DEUeAvD4,3845
|
309
308
|
tomwer/core/process/drac/rawdataset.py,sha256=mB4sNTM1rx46n5whjIlY4xq1gz4_rbaS7yAS3QE2iT0,5175
|
310
309
|
tomwer/core/process/drac/tests/test_gallery.py,sha256=WZaK42Y5S8sNrzgTToqctYvle8Xc1YBs3u6moei9ZMc,2319
|
@@ -317,12 +316,12 @@ tomwer/core/process/edit/nxtomoeditor.py,sha256=HUYInTVIUbqVtFXQKMCOpQ-tvgFz5w3U
|
|
317
316
|
tomwer/core/process/edit/tests/test_darkflatpatch.py,sha256=0QOjUgiYkjuWDZvI5pkuiViK4HUJA5E2sXF5LXtf_vY,9366
|
318
317
|
tomwer/core/process/edit/tests/test_imagekey_editor.py,sha256=ft-xDMRk6CRs7DehNEnh1uJ9gLKJ-SxZAb0GmsLek0w,2345
|
319
318
|
tomwer/core/process/reconstruction/__init__.py,sha256=G_vePtIyh1WlXtcmOyQI3nRsP-F0bsaDSdLWHC0bVzo,159
|
320
|
-
tomwer/core/process/reconstruction/output.py,sha256=
|
319
|
+
tomwer/core/process/reconstruction/output.py,sha256=LMVH71rybFR1j-DTCo48k5M3feKuLBq9jE4n01qJAec,4118
|
321
320
|
tomwer/core/process/reconstruction/params_cache.py,sha256=GTchgCH1Db7fuYsSGxSF6wCTeV5grlYQh5ab198nmOk,1527
|
322
321
|
tomwer/core/process/reconstruction/paramsbase.py,sha256=6PjFcO0yYs_apgv2MImGSDLsBgQ7UeK2TSBLz28HYgc,6344
|
323
322
|
tomwer/core/process/reconstruction/axis/__init__.py,sha256=VSQkN6M6JvM_c55OiboNyJUW8Zs1wkkQgv1JYmzvIr8,80
|
324
323
|
tomwer/core/process/reconstruction/axis/anglemode.py,sha256=4IFrqYSeWEMs14GZHipr1u9Njm2fLhF7qJHq9_kWfeY,537
|
325
|
-
tomwer/core/process/reconstruction/axis/axis.py,sha256=
|
324
|
+
tomwer/core/process/reconstruction/axis/axis.py,sha256=t1FCHRfUh4nT7iX2c8ID6DytvaUprDAehisp9OKyqrA,17096
|
326
325
|
tomwer/core/process/reconstruction/axis/mode.py,sha256=Bp3Kz5fK9lIZdDvGlc3AAFoDo6d4fqezV37cX9lPiBI,9541
|
327
326
|
tomwer/core/process/reconstruction/axis/params.py,sha256=yabw4l2TDyssc0xwXS_WQ7n3hEoDtAJtl_chDr_BAhw,28276
|
328
327
|
tomwer/core/process/reconstruction/axis/projectiontype.py,sha256=U8ZZA2o3tONpUkzWLL-MXTahtJGJMQofpJOVkuDNc8Q,184
|
@@ -333,9 +332,9 @@ tomwer/core/process/reconstruction/darkref/darkrefscopy.py,sha256=D0i__aTsEvfJg_
|
|
333
332
|
tomwer/core/process/reconstruction/darkref/params.py,sha256=vrDN8bZu28E4zLuHJzNvIIyyZq-4yhX9k9itXYCJ2iM,8756
|
334
333
|
tomwer/core/process/reconstruction/darkref/settings.py,sha256=35jliuOIjMKTOJjgn4uiotcDEr6RskpLHfRWWLm76dc,188
|
335
334
|
tomwer/core/process/reconstruction/nabu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
336
|
-
tomwer/core/process/reconstruction/nabu/castvolume.py,sha256=
|
335
|
+
tomwer/core/process/reconstruction/nabu/castvolume.py,sha256=DGNj3YF97GRABy4xvhjjv8_IgyWoRb5TkBQcDFlpUDM,9945
|
337
336
|
tomwer/core/process/reconstruction/nabu/helical.py,sha256=gauUkoPiShvnvMQrCQXv28g0yLe-GceML5kYMSXmNIg,1997
|
338
|
-
tomwer/core/process/reconstruction/nabu/nabucommon.py,sha256=
|
337
|
+
tomwer/core/process/reconstruction/nabu/nabucommon.py,sha256=6jOdKpUW5MbRkf53evu4-ZBkQaNWMfl799-f0zQ9-1Q,24554
|
339
338
|
tomwer/core/process/reconstruction/nabu/nabuscores.py,sha256=e5tRG1QtmVAdXb8KHMTMtBXA3KQXqKKcqipY2HzMURg,25275
|
340
339
|
tomwer/core/process/reconstruction/nabu/nabuslices.py,sha256=WAmNlfyRWL0zhEE8jMjMg7WyzPM4BcBA6bWpaH8O53A,32101
|
341
340
|
tomwer/core/process/reconstruction/nabu/nabuvolume.py,sha256=Fn0tkPDTDJQaMEJA4LzpPp0ZtG4MIu9YN82-jesxRKo,20052
|
@@ -351,10 +350,10 @@ tomwer/core/process/reconstruction/normalization/normalization.py,sha256=lG9eqfz
|
|
351
350
|
tomwer/core/process/reconstruction/normalization/params.py,sha256=WNCuA5A5EuiWJjvKqY309Eiaa7THocgnG7owkQFHdyc,3418
|
352
351
|
tomwer/core/process/reconstruction/saaxis/__init__.py,sha256=ZEOu0nZWlMyBoX_A64yeEjVflE5x4iWSpYLTgs45g0o,137
|
353
352
|
tomwer/core/process/reconstruction/saaxis/params.py,sha256=E16GiHpSXh28p6BIsSaWMY9y2K-yMRRhXtFf6stUFRA,4204
|
354
|
-
tomwer/core/process/reconstruction/saaxis/saaxis.py,sha256=
|
353
|
+
tomwer/core/process/reconstruction/saaxis/saaxis.py,sha256=un4WZKGh3DGlP-7aDcIMSA13unTLMA2BnjR3SRNb4vA,30165
|
355
354
|
tomwer/core/process/reconstruction/sadeltabeta/__init__.py,sha256=WDYJxfqPnz5IeLPCX5W8UEO8-Z-NSH79gkqp2DZn1bM,162
|
356
355
|
tomwer/core/process/reconstruction/sadeltabeta/params.py,sha256=ziAlTtQLy4EItIprFxDOm2Td1emHpSpnQb58niF1tI0,2691
|
357
|
-
tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py,sha256=
|
356
|
+
tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py,sha256=bAO0dYSnMdgbBHlcU-roRC7sGqLIpi_rlC7cMXFInLI,29075
|
358
357
|
tomwer/core/process/reconstruction/scores/__init__.py,sha256=aTWranL8RRGSMKOSDkkjhaqWisgZdP9Xgx7GoFhLwJo,282
|
359
358
|
tomwer/core/process/reconstruction/scores/params.py,sha256=V6oOz6my6EghBeRC4L3-7fH6xWu29Pi4RsOVKQXXvT4,6148
|
360
359
|
tomwer/core/process/reconstruction/scores/scores.py,sha256=xbmUSiGWCq8Ux4E3rIjqE6ZGUy5I-k7n3HXxrgqXX8E,5888
|
@@ -421,7 +420,7 @@ tomwer/core/scan/tests/test_scan.py,sha256=mHFPi2Tc7Z2_5rWvAp3YmObVSTB5yi-sTkHm1
|
|
421
420
|
tomwer/core/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
422
421
|
tomwer/core/tests/test_scanutils.py,sha256=xWwd1nycVDWmFaIaL2gQ_xxrUMhVCARaNHI2SxT9NOI,844
|
423
422
|
tomwer/core/tests/test_utils.py,sha256=_XtrI9gk2mx2_owFXHZIbVheUIDHBPjVru_vOwK0_FU,9349
|
424
|
-
tomwer/core/utils/__init__.py,sha256=
|
423
|
+
tomwer/core/utils/__init__.py,sha256=8GD92NUNwdr5L634HnK3zOlZeFVc2StgSfiXSu6WXaU,25
|
425
424
|
tomwer/core/utils/char.py,sha256=Bw2VhkjCAsTKhw_2Vn-uLqEGkrBjujqiJkCC-eiOmRE,363
|
426
425
|
tomwer/core/utils/deprecation.py,sha256=D3hS_ZzBQgjYG5UmZW5KaPPlHaH1OZVXePGCdIVtHyA,3282
|
427
426
|
tomwer/core/utils/dictutils.py,sha256=9BEwERAYGL4tW06jTNGhgsJ2f4dojtYMmNixHoRF3XA,466
|
@@ -457,25 +456,25 @@ tomwer/gui/__init__.py,sha256=OfM3Lqb0upMvLzigT35R010BS8vmqgsvAQsNWJRLxmo,100
|
|
457
456
|
tomwer/gui/fonts.py,sha256=nacsUIwMyB4TBNT4FdgoxFCODtrB7oJXzmjGzLF8EDk,134
|
458
457
|
tomwer/gui/icons.py,sha256=J-12uD8qrGUk3h5sCq9CfOvwcfuNhFc96vIfOPQorSg,11388
|
459
458
|
tomwer/gui/illustrations.py,sha256=RS5dswvKGqBIyXamm4pNFq7HeSGOE2jNanF3WQj206s,3975
|
460
|
-
tomwer/gui/imagefromfile.py,sha256=
|
461
|
-
tomwer/gui/metadataloader.py,sha256=
|
462
|
-
tomwer/gui/qconfigfile.py,sha256=
|
463
|
-
tomwer/gui/qlefilesystem.py,sha256=
|
464
|
-
tomwer/gui/settings.py,sha256=
|
465
|
-
tomwer/gui/stackplot.py,sha256=
|
459
|
+
tomwer/gui/imagefromfile.py,sha256=2idGysb4AyQ3lkuz2i0wmY2BTZLG1vixsFAg_QgbdEM,4105
|
460
|
+
tomwer/gui/metadataloader.py,sha256=46Tm17A9dRfuOkxBpcL38QlVbilTEJ2uTpDPGfFYn34,956
|
461
|
+
tomwer/gui/qconfigfile.py,sha256=ligRZwQpuVinrsZdA81-Balhvk2SFjuQ_BNBzEJkc1c,782
|
462
|
+
tomwer/gui/qlefilesystem.py,sha256=DFysSxrmnsyq0XTUNnxEijKd2uLoi9R7Sja5y83mH08,634
|
463
|
+
tomwer/gui/settings.py,sha256=7LH-v6DM_V82j--aoHO7BaRawCsJsfgE3_6yI90TD7E,405
|
464
|
+
tomwer/gui/stackplot.py,sha256=WE_GOa0RzwPcMiop98ljM_r-4g4bSy-Jee9h8v3kwO8,3552
|
466
465
|
tomwer/gui/stacks.py,sha256=4lPRUjqGhif_oxArV7HHllbFsmLTdPJgHe4QD8TRz8k,13558
|
467
|
-
tomwer/gui/cluster/__init__.py,sha256=
|
466
|
+
tomwer/gui/cluster/__init__.py,sha256=QeukFHF5SISl4dsVtIGc8UoAlgMiXdAeG2nksocycic,36
|
468
467
|
tomwer/gui/cluster/slurm.py,sha256=FIp9e7E48KEORabOKBVu7Wm7N9oQBKKUanBSs62hqs0,34374
|
469
468
|
tomwer/gui/cluster/supervisor.py,sha256=5qgAbRoFQvQeZ1jy5Z-5p98QqdZxNM9hieOce2Dn_uE,15794
|
470
469
|
tomwer/gui/cluster/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
471
470
|
tomwer/gui/cluster/tests/test_cluster.py,sha256=Yz0nzPQmMhMj3lRsJ8lB3_d9tpeJ9iC-K24IgdhV08w,3205
|
472
471
|
tomwer/gui/cluster/tests/test_supervisor.py,sha256=n2pOzORyrqgTpftaw8LxcVsqGFoLMRRliIqIj_-_6Z8,1895
|
473
|
-
tomwer/gui/conditions/__init__.py,sha256=
|
472
|
+
tomwer/gui/conditions/__init__.py,sha256=tR7WSGA_D6_HEqHrxqyIHrBU5rVZ4XN-xwYNrUS-ydI,80
|
474
473
|
tomwer/gui/conditions/filter.py,sha256=lZ-gczKfq7KWtdU_vfyNfio1u1v4MLSAbbrHt_DDPeQ,4234
|
475
|
-
tomwer/gui/configuration/__init__.py,sha256=
|
474
|
+
tomwer/gui/configuration/__init__.py,sha256=8TF_yRZ1-lxMY_4VPXnwfR6ja7jOFmdv0JJmh8Q52Rs,123
|
476
475
|
tomwer/gui/configuration/action.py,sha256=xmMJAtkLKJkLOvhGRAS8i2cge54I16xxYTRQaWHOqT4,2512
|
477
476
|
tomwer/gui/configuration/level.py,sha256=mwMmCRAe4EI9gyki0k4jtcRCUOWfuu_Dfm_9IYF7qpc,653
|
478
|
-
tomwer/gui/control/__init__.py,sha256=
|
477
|
+
tomwer/gui/control/__init__.py,sha256=Pe27j1z4qWIXC9gSUcMDo3dgL5SXyxs_AFUFUo9zOxA,92
|
479
478
|
tomwer/gui/control/actions.py,sha256=9W1B6EIgQT3NIeEIPz_wO9mTq2qdkiaeC6W3M1CwtNQ,3392
|
480
479
|
tomwer/gui/control/datadiscovery.py,sha256=MqrjldmV4zgQpF875ZbjcSwcsIN9e6IGUmH_nj9tiSc,6146
|
481
480
|
tomwer/gui/control/datalist.py,sha256=UnHs7katVq_MiIsugGkkyoqqj_lH4iXrpEbkq3m8VHQ,40465
|
@@ -517,20 +516,20 @@ tomwer/gui/control/tests/test_scanvalidator.py,sha256=rJJZuj73thyqljWEbVx1rREbXC
|
|
517
516
|
tomwer/gui/control/tests/test_single_tomo_obj.py,sha256=wGOkThfP_gpVTbZ6FOgN23UJoXRDiymOOTJmUBD415Q,2278
|
518
517
|
tomwer/gui/control/tests/test_volume_dialog.py,sha256=AEbawlIr05oqXhuqYEgJDEVIf5Zi84ks5uT-tBJUKNE,6742
|
519
518
|
tomwer/gui/control/tests/test_volumeselector.py,sha256=cF33xpGiRM2iORHxgGWuTDHLeV12QqaHlBbxJVqwWuI,2090
|
520
|
-
tomwer/gui/dataportal/__init__.py,sha256=
|
519
|
+
tomwer/gui/dataportal/__init__.py,sha256=Ql9igxJsXj6yiykmscFWR1DTH93MrNRctdTC1liPAO4,37
|
521
520
|
tomwer/gui/dataportal/createscreenshots.py,sha256=1XcvaTxZ4dZwWtcyQW4dBkUf9HpJI6PlowZHsJyuzRg,3128
|
522
521
|
tomwer/gui/dataportal/gallery.py,sha256=PHXcbAAoflNSk5Et3f7B9MBtxhJjhq6SGx-_l9itBYY,4873
|
523
522
|
tomwer/gui/dataportal/outputformat.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
524
523
|
tomwer/gui/dataportal/publish.py,sha256=LnRHEUiBc6hLyCbCjwjmYUNowr01rrnjayqwQeLPCkw,3731
|
525
524
|
tomwer/gui/dataportal/tests/test_create_screenshots_gui.py,sha256=-1UL8VvMLGfPEvX5yg1VfJJMSVVxjIIAfLuYp4SzeuE,714
|
526
525
|
tomwer/gui/dataportal/tests/test_gallery_gui.py,sha256=LTXPplIMJbJW8KgGY_oYYukwErCBbdao5QDnl7XwfO0,529
|
527
|
-
tomwer/gui/debugtools/__init__.py,sha256=
|
526
|
+
tomwer/gui/debugtools/__init__.py,sha256=ZPFE7N29uZlGgjLF1n37jOmEQgJZqX9GIgRnnFSX8Fs,78
|
528
527
|
tomwer/gui/debugtools/datasetgenerator.py,sha256=9Yee0abZklPJqMZGgR2YfMggWLElmEODpuYXXGB85n4,9310
|
529
528
|
tomwer/gui/debugtools/objectinspector.py,sha256=g_uwELgYWd-TOmUldevLn_6Jstdch4YCfqH7d7J8GvA,1595
|
530
|
-
tomwer/gui/dialog/QDataDialog.py,sha256=
|
531
|
-
tomwer/gui/dialog/QVolumeDialog.py,sha256=
|
529
|
+
tomwer/gui/dialog/QDataDialog.py,sha256=XrLn8fA7jrrZluRDuufDdVYgEa2W5Vvtr9lFpsQL67M,3251
|
530
|
+
tomwer/gui/dialog/QVolumeDialog.py,sha256=4SqohhUnQb9gkIxdi_0R4X3McsNK_v_tVntHj7ejspM,18564
|
532
531
|
tomwer/gui/dialog/__init__.py,sha256=gGi_AduLD4h7DPOYLVkiSDfy-F5jB7alL1wWbKgPs60,88
|
533
|
-
tomwer/gui/edit/__init__.py,sha256=
|
532
|
+
tomwer/gui/edit/__init__.py,sha256=Pe27j1z4qWIXC9gSUcMDo3dgL5SXyxs_AFUFUo9zOxA,92
|
534
533
|
tomwer/gui/edit/dkrfpatch.py,sha256=WC7bg7cSuUahNbyLgFGmE9_YWoABWC095ctE9Mqvsb8,16010
|
535
534
|
tomwer/gui/edit/imagekeyeditor.py,sha256=Gt-lA_HqZGCzRTJn8l_TWPV7RJAYICW_Nda6Zj_FS00,28201
|
536
535
|
tomwer/gui/edit/nxtomoeditor.py,sha256=pJBrtwW_lhlf8amnVkbieZmtUW9NVSjFgWsHTgzqZxM,22616
|
@@ -539,7 +538,7 @@ tomwer/gui/edit/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
539
538
|
tomwer/gui/edit/tests/test_dkrf_patch.py,sha256=L0fO2nqqK74EOIZTPQKjO03qsAiXbqjj7FCGMrpRz3k,6685
|
540
539
|
tomwer/gui/edit/tests/test_image_key_editor.py,sha256=6sIGM_DjU_KjspnVKB2UDhWh_BLDhYP8rS6U1fAZXkk,4647
|
541
540
|
tomwer/gui/edit/tests/test_nx_editor.py,sha256=iEm8th1ahclnLhNHVHtdvQQvazX2znteYTJUGeEfXpw,13865
|
542
|
-
tomwer/gui/reconstruction/__init__.py,sha256=
|
541
|
+
tomwer/gui/reconstruction/__init__.py,sha256=Ozf9bYay5hVhe1clExeM_MLhcAuu624i5BP1xonWlB0,95
|
543
542
|
tomwer/gui/reconstruction/axis/AxisMainWindow.py,sha256=7w2LhdQ1pa8vU9U-XTA3ohGQfYKk5ETZ79s_xl4Zxx8,9641
|
544
543
|
tomwer/gui/reconstruction/axis/AxisOptionsWidget.py,sha256=M47xflZ68KkTDg8tksFt8n7ZFVIr8tJxstlPyG4Odq0,12168
|
545
544
|
tomwer/gui/reconstruction/axis/AxisSettingsWidget.py,sha256=7GpHteE2j9RUo-jUQoJdXJ-GnIi9VnY13Lveq3mvd1M,28120
|
@@ -600,7 +599,7 @@ tomwer/gui/samplemoved/selectiontable.py,sha256=CzQnJBxfIeoZSw8aR0VvrsaIg6fozREI
|
|
600
599
|
tomwer/gui/stitching/SingleAxisStitchingWidget.py,sha256=syBzSf8yRE9poZh0UKqZcyD8ZmEt-vama8bVRsGBuDw,13023
|
601
600
|
tomwer/gui/stitching/StitchingOptionsWidget.py,sha256=c5kRZOMuGKK_CgK28IkBawaVvK2cmczbWF4TcVUZxq4,18186
|
602
601
|
tomwer/gui/stitching/StitchingWindow.py,sha256=NlUX7htpS0BrlgBLeh_Mr5JpTzzyPVETU-j2_crQt20,24360
|
603
|
-
tomwer/gui/stitching/__init__.py,sha256=
|
602
|
+
tomwer/gui/stitching/__init__.py,sha256=jYSG4DSAtMGm9Yuf4MVdlSdMO8JKOp_t-8NKsnR92LU,45
|
604
603
|
tomwer/gui/stitching/action.py,sha256=7CkACYKsRt3c_6PgrmQVZwSi9UwvGrQVUymJytHbqcE,1659
|
605
604
|
tomwer/gui/stitching/alignment.py,sha256=QGWnogvBSbx3kk8lrFDoipmhqbVHEe46WGAeOorlHQ8,4001
|
606
605
|
tomwer/gui/stitching/axisorderedlist.py,sha256=2Os8cjZM9B-LCYB9p6JW7MpqXWaVd6oeWSqP4ZbSlBM,17980
|
@@ -646,7 +645,7 @@ tomwer/gui/utils/qt_utils.py,sha256=QMXte_vdCEwr4Vybt5sopczQ_OuRd1W5h6SydqFH0F8,
|
|
646
645
|
tomwer/gui/utils/sandboxes.py,sha256=QfSRhL1KrFhS2Wr734Tzvp1OjTp82Ozc0ULr-JycFlI,6145
|
647
646
|
tomwer/gui/utils/scandescription.py,sha256=T4-tu6B8ZhpE_9sMdZ_4V7iS81gyEQxi3Yenik2I24o,2009
|
648
647
|
tomwer/gui/utils/scrollarea.py,sha256=EcHwz5eR0RJW4swhm-NuIEj4tcvkpdiFznXF0490gqo,465
|
649
|
-
tomwer/gui/utils/slider.py,sha256=
|
648
|
+
tomwer/gui/utils/slider.py,sha256=NLooxIa_2dMv60UAt_PV2BKcd15WuNv1EiV1JRdVcu0,2154
|
650
649
|
tomwer/gui/utils/splashscreen.py,sha256=Wt6lDby3irZn6Vc52whPRTbJOzmMA66VH6d5cIXy_dI,489
|
651
650
|
tomwer/gui/utils/step.py,sha256=epEKQwj2byRFH_Lc2XUuMGOVcrKR0m1iFP7HPqb5iG0,5397
|
652
651
|
tomwer/gui/utils/unitsystem.py,sha256=0g6pYemy2MpkGQJGuuR9yCwbZ9mt3nPA1dqAvAqUHRo,5994
|
@@ -659,7 +658,7 @@ tomwer/gui/utils/tests/test_completer.py,sha256=QwV9DC48Sviv4G0Z3PxMfDq_c-T8Uemb
|
|
659
658
|
tomwer/gui/utils/tests/test_line_selector.py,sha256=42EbSc81A6uYwTixuZr0R4pexAX3fMU0LdKqgM0SIM8,618
|
660
659
|
tomwer/gui/utils/tests/test_splashscreen.py,sha256=sJZzsvJ1-VpNuQ2wifRz4a6PbU7rZQVXZzMVMGYpZ0A,253
|
661
660
|
tomwer/gui/utils/tests/test_vignettes.py,sha256=xgTmE7QB5db12Wqe32v5zA7hx0PtE5bqQbHtStVzerk,2265
|
662
|
-
tomwer/gui/visualization/__init__.py,sha256=
|
661
|
+
tomwer/gui/visualization/__init__.py,sha256=SSJ9-dlyNdnairP1L2s4909HDu2ROntVHWAus7qM-Zo,95
|
663
662
|
tomwer/gui/visualization/dataviewer.py,sha256=mIF09tD5psqbL9PUkSOYF6ywPYhiJAMs9Sr3QwwOF5E,13536
|
664
663
|
tomwer/gui/visualization/fullscreenplot.py,sha256=PwPbhbdU23_ngZ7FM_lhM7zxY6Xd1AbdACGVG6YfwrM,3637
|
665
664
|
tomwer/gui/visualization/imagestack.py,sha256=DBMEFBo0BbdFCscL8EMSumXkWVl_p7_uk4UvEtsSWRw,15777
|
@@ -681,7 +680,7 @@ tomwer/gui/visualization/test/test_reconstruction_parameters.py,sha256=l3Mfy-Vb3
|
|
681
680
|
tomwer/gui/visualization/test/test_sinogramviewer.py,sha256=NwJI7r6chsnmp5mZOIUCTl1o3c_CRBnD2WB6dC9THlU,1750
|
682
681
|
tomwer/gui/visualization/test/test_stacks.py,sha256=OrchwJ0L0Sqi9f3o8_P5LO-4bI6JxC-P26DSFXcA2Js,6214
|
683
682
|
tomwer/gui/visualization/test/test_volumeviewer.py,sha256=ws8m3JczvpwCJygXqBkxSiUPwLtD_8Q_KWNOsIXGu5w,2413
|
684
|
-
tomwer/io/__init__.py,sha256=
|
683
|
+
tomwer/io/__init__.py,sha256=IYe99zDNkHovOno-iehiAyM_jgxBzYyw_WMWrG45vBg,81
|
685
684
|
tomwer/io/utils/__init__.py,sha256=SrC5etCrm-3oMkUc4PPRqSdkIwTvKdtnBTfxh35_exI,272
|
686
685
|
tomwer/io/utils/h5pyutils.py,sha256=Y2vvvVTyA8r7_J13_6C1OeHj89v7YQUsubceI3tKsok,1641
|
687
686
|
tomwer/io/utils/raw_and_processed_data.py,sha256=XMAyMTbxB7orxHsYOPuWQd5QiGQB_xesx8bMf2KyW0g,3208
|
@@ -848,7 +847,6 @@ tomwer/synctools/tests/test_darkRefs.py,sha256=1OgWaV-hgDmi4rkh0hxjCW_codBAnxNhp
|
|
848
847
|
tomwer/synctools/tests/test_foldertransfer.py,sha256=ZFIJWSjgYAWw3ktzamid5DJZNnMkAV6Pj72dKG69cJc,12024
|
849
848
|
tomwer/synctools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
850
849
|
tomwer/synctools/utils/scanstages.py,sha256=vIUKVDSfM2UwPjjmZTiIN1tNg4antnGcSPv1aYapJCY,7830
|
851
|
-
tomwer/tasks/reconstruction/cleardarkflat.py,sha256=NW7xtaxF8-VRz0fFOUyotnyG5514YamwPtX6r2SZ-0s,1329
|
852
850
|
tomwer/tests/__init__.py,sha256=dPPaIvpzHssjwxsMzYJM_gxQ2e0cnRyQHXxi9ux6ZOY,19
|
853
851
|
tomwer/tests/conftest.py,sha256=0XlKfOrVtPg8VmyQn4BoK_mzcliFUtacDGLlZ5wD_PM,1912
|
854
852
|
tomwer/tests/datasets.py,sha256=QXQ3jSwgWzfq4CaELOSrk9kHg5GmrP7kGHsdOlNSEIE,336
|
@@ -905,9 +903,9 @@ tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_volume_viewer
|
|
905
903
|
tomwer/tests/test_ewoks/test_conversion.py,sha256=a8cEWbErXiFCAkaapi0jeEoRKYxcFQCoa-Jr_u77_OM,3656
|
906
904
|
tomwer/tests/test_ewoks/test_single_node_execution.py,sha256=YBUHfiAnkciv_kjj7biC5fOs7c7ofNImM_azGMn4LZM,2813
|
907
905
|
tomwer/tests/test_ewoks/test_workflows.py,sha256=Eq80eexf5NVL7SzvwctLOaUeuQ8V3vDiFiHgbJA4Yb8,4871
|
908
|
-
tomwer-1.4.
|
909
|
-
tomwer-1.4.
|
910
|
-
tomwer-1.4.
|
911
|
-
tomwer-1.4.
|
912
|
-
tomwer-1.4.
|
913
|
-
tomwer-1.4.
|
906
|
+
tomwer-1.4.8.dist-info/LICENSE,sha256=62p1wL0n9WMTu8x2YDv0odYgTqeSvTd9mQ0v6Mq7lzE,1876
|
907
|
+
tomwer-1.4.8.dist-info/METADATA,sha256=N3KGtY5cMcf1QBDrJWJsGSetIU0TUEdUfV0okormuLI,13415
|
908
|
+
tomwer-1.4.8.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
909
|
+
tomwer-1.4.8.dist-info/entry_points.txt,sha256=py3ZUWvGnWGc5c7Yhw_uBTm8Fmew0BDw3aQZnWMBNZI,500
|
910
|
+
tomwer-1.4.8.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
|
911
|
+
tomwer-1.4.8.dist-info/RECORD,,
|
@@ -1,19 +0,0 @@
|
|
1
|
-
<?xml version='1.0' encoding='utf-8'?>
|
2
|
-
<scheme version="2.0" title="" description="">
|
3
|
-
<nodes>
|
4
|
-
<node id="0" name="center of rotation finder" qualified_name="orangecontrib.tomwer.widgets.reconstruction.AxisOW.AxisOW" project_name="tomwer" version="" title="center of rotation finder" position="(375.0, 146.0)" />
|
5
|
-
<node id="1" name="scan selector" qualified_name="orangecontrib.tomwer.widgets.control.DataSelectorOW.DataSelectorOW" project_name="tomwer" version="" title="scan selector" position="(150.0, 115.0)" />
|
6
|
-
</nodes>
|
7
|
-
<links>
|
8
|
-
<link id="0" source_node_id="1" sink_node_id="0" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
9
|
-
</links>
|
10
|
-
<annotations />
|
11
|
-
<thumbnail />
|
12
|
-
<node_properties>
|
13
|
-
<properties node_id="0" format="literal">{'_ewoks_default_inputs': {'data': None, 'axis_params': {'MODE': 'sino-coarse-to-fine', 'POSITION_VALUE': None, 'CALC_INPUT_TYPE': 'transmission_nopag', 'ANGLE_MODE': '0-180', 'SINOGRAM_LINE': 'middle', 'SINOGRAM_SUBSAMPLING': 10, 'AXIS_URL_1': '', 'AXIS_URL_2': '', 'LOOK_AT_STDMAX': False, 'NEAR_WX': 5, 'FINE_STEP_X': 0.1, 'SCALE_IMG2_TO_IMG1': False, 'NEAR_POSITION': 'right', 'PADDING_MODE': 'edge', 'FLIP_LR': True, 'COMPOSITE_OPTS': {'theta': 5, 'oversampling': 4, 'n_subsampling_y': 40, 'take_log': True, 'near_width': 40}, 'COR_OPTIONS': '', 'MOTOR_OFFSET': 0.0, 'X_ROTATION_AXIS_PIXEL_POSITION': 0.0}, 'gui': {'mode_is_lock': False, 'value_is_lock': False, 'auto_update_estimated_cor': True, 'y_axis_inverted': True}}, 'controlAreaVisible': True, 'savedWidgetGeometry': b'\x01\xd9\xd0\xcb\x00\x03\x00\x00\x00\x00\x017\x00\x00\x00\xe5\x00\x00\x06H\x00\x00\x03\xa6\x00\x00\x017\x00\x00\x01\n\x00\x00\x06H\x00\x00\x03\xa6\x00\x00\x00\x00\x00\x00\x00\x00\x07\x80\x00\x00\x017\x00\x00\x01\n\x00\x00\x06H\x00\x00\x03\xa6', '__version__': 1}</properties>
|
14
|
-
<properties node_id="1" format="literal">{'_scanIDs': ['hdf5:scan:/home/payno/Datasets/tomography/bamboo_hercules/bambou_hercules_0001/bambou_hercules_0001_0000.nx?path=/entry0000'], 'controlAreaVisible': True, 'savedWidgetGeometry': b'\x01\xd9\xd0\xcb\x00\x03\x00\x00\x00\x00\n\xa0\x00\x00\x01Z\x00\x00\x0b\xcb\x00\x00\x03\x06\x00\x00\n\xa0\x00\x00\x01Z\x00\x00\x0b\xcb\x00\x00\x03\x06\x00\x00\x00\x01\x00\x00\x00\x00\x07\x80\x00\x00\n\xa0\x00\x00\x01Z\x00\x00\x0b\xcb\x00\x00\x03\x06', '__version__': 1}</properties>
|
15
|
-
</node_properties>
|
16
|
-
<session_state>
|
17
|
-
<window_groups />
|
18
|
-
</session_state>
|
19
|
-
</scheme>
|
@@ -1,38 +0,0 @@
|
|
1
|
-
"""
|
2
|
-
Contains task to clear reduced dark and flat frames
|
3
|
-
"""
|
4
|
-
from __future__ import annotations
|
5
|
-
|
6
|
-
from tomoscan.scanbase import TomoScanBase as TomoscanScanBase
|
7
|
-
|
8
|
-
from processview.core.manager import DatasetState, ProcessManager
|
9
|
-
from processview.core.superviseprocess import SuperviseProcess
|
10
|
-
|
11
|
-
from tomwer.tasks.task import Task
|
12
|
-
from tomwer.core.scan.scanbase import TomwerScanBase
|
13
|
-
from tomwer.core.scan.scanfactory import ScanFactory
|
14
|
-
from tomwer.core.utils.scanutils import data_identifier_to_scan
|
15
|
-
from tomwer.core.reconstruction.darkflat import params as dkrf_reconsparams
|
16
|
-
from tomwer.utils import docstring
|
17
|
-
|
18
|
-
|
19
|
-
class ClearReducedDarkAndFlat(
|
20
|
-
Task,
|
21
|
-
SuperviseProcess,
|
22
|
-
input_names=("data",),
|
23
|
-
output_names=("data",),
|
24
|
-
):
|
25
|
-
"""
|
26
|
-
Task to clear reduced darks and flats. Both on disk and on the object cache.
|
27
|
-
th goal of this task is to make sure the scan is cleared of any reduced frames to reprocess it later.
|
28
|
-
"""
|
29
|
-
def run(self):
|
30
|
-
scan = self.inputs.data
|
31
|
-
if not isinstance(scan, TomoscanScanBase):
|
32
|
-
raise TypeError(f"scan should be an instance of {TomoscanScanBase}. Got {type(scan)}")
|
33
|
-
scan.set_reduced_flats(None)
|
34
|
-
scan.reduced_flats_infos = None
|
35
|
-
scan.set_reduced_darks(None)
|
36
|
-
scan.reduced_darks_infos = None
|
37
|
-
|
38
|
-
self.outputs.data = scan
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|