tomwer 1.4.5__py3-none-any.whl → 1.4.6__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/__init__.py +4 -0
- orangecontrib/tomwer/widgets/__init__.py +3 -23
- orangecontrib/tomwer/widgets/cluster/__init__.py +3 -23
- orangecontrib/tomwer/widgets/control/__init__.py +4 -23
- orangecontrib/tomwer/widgets/dataportal/__init__.py +5 -0
- orangecontrib/tomwer/widgets/debugtools/__init__.py +3 -23
- orangecontrib/tomwer/widgets/edit/__init__.py +3 -23
- orangecontrib/tomwer/widgets/other/__init__.py +3 -23
- orangecontrib/tomwer/widgets/reconstruction/__init__.py +3 -23
- orangecontrib/tomwer/widgets/stitching/__init__.py +4 -0
- orangecontrib/tomwer/widgets/visualization/__init__.py +3 -23
- tomwer/__init__.py +2 -1
- tomwer/core/process/reconstruction/nabu/nabucommon.py +5 -3
- tomwer/core/utils/image.py +2 -2
- tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +3 -2
- tomwer/gui/reconstruction/nabu/slices.py +3 -3
- tomwer/tasks/reconstruction/cleardarkflat.py +38 -0
- tomwer/version.py +1 -1
- {tomwer-1.4.5.dist-info → tomwer-1.4.6.dist-info}/METADATA +2 -2
- {tomwer-1.4.5.dist-info → tomwer-1.4.6.dist-info}/RECORD +24 -23
- {tomwer-1.4.5.dist-info → tomwer-1.4.6.dist-info}/WHEEL +1 -1
- {tomwer-1.4.5.dist-info → tomwer-1.4.6.dist-info}/LICENSE +0 -0
- {tomwer-1.4.5.dist-info → tomwer-1.4.6.dist-info}/entry_points.txt +0 -0
- {tomwer-1.4.5.dist-info → tomwer-1.4.6.dist-info}/top_level.txt +0 -0
orangecontrib/tomwer/__init__.py
CHANGED
@@ -1,26 +1,6 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
#
|
5
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
# of this software and associated documentation files (the "Software"), to deal
|
7
|
-
# in the Software without restriction, including without limitation the rights
|
8
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
# copies of the Software, and to permit persons to whom the Software is
|
10
|
-
# furnished to do so, subject to the following conditions:
|
11
|
-
#
|
12
|
-
# The above copyright notice and this permission notice shall be included in
|
13
|
-
# all copies or substantial portions of the Software.
|
14
|
-
#
|
15
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
# THE SOFTWARE.
|
22
|
-
#
|
23
|
-
#############################################################################
|
1
|
+
"""
|
2
|
+
(Ewoks)Orange Widgets dedicated for tomography
|
3
|
+
"""
|
24
4
|
|
25
5
|
from ewoksorange.pkg_meta import get_distribution
|
26
6
|
|
@@ -1,26 +1,6 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
#
|
5
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
# of this software and associated documentation files (the "Software"), to deal
|
7
|
-
# in the Software without restriction, including without limitation the rights
|
8
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
# copies of the Software, and to permit persons to whom the Software is
|
10
|
-
# furnished to do so, subject to the following conditions:
|
11
|
-
#
|
12
|
-
# The above copyright notice and this permission notice shall be included in
|
13
|
-
# all copies or substantial portions of the Software.
|
14
|
-
#
|
15
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
# THE SOFTWARE.
|
22
|
-
#
|
23
|
-
#############################################################################
|
1
|
+
"""
|
2
|
+
(Ewoks)Orange Widgets for remote processing through slurm
|
3
|
+
"""
|
24
4
|
|
25
5
|
NAME = "compute cluster"
|
26
6
|
|
@@ -1,26 +1,7 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
# of this software and associated documentation files (the "Software"), to deal
|
7
|
-
# in the Software without restriction, including without limitation the rights
|
8
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
# copies of the Software, and to permit persons to whom the Software is
|
10
|
-
# furnished to do so, subject to the following conditions:
|
11
|
-
#
|
12
|
-
# The above copyright notice and this permission notice shall be included in
|
13
|
-
# all copies or substantial portions of the Software.
|
14
|
-
#
|
15
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
# THE SOFTWARE.
|
22
|
-
#
|
23
|
-
#############################################################################
|
1
|
+
"""
|
2
|
+
(Ewoks)Orange Widgets to 'control' the flow. Like defining input / output, stacking scans...
|
3
|
+
Those widget are not doing any 'core' processing.
|
4
|
+
"""
|
24
5
|
|
25
6
|
NAME = "control"
|
26
7
|
|
@@ -1,26 +1,6 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
#
|
5
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
# of this software and associated documentation files (the "Software"), to deal
|
7
|
-
# in the Software without restriction, including without limitation the rights
|
8
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
# copies of the Software, and to permit persons to whom the Software is
|
10
|
-
# furnished to do so, subject to the following conditions:
|
11
|
-
#
|
12
|
-
# The above copyright notice and this permission notice shall be included in
|
13
|
-
# all copies or substantial portions of the Software.
|
14
|
-
#
|
15
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
# THE SOFTWARE.
|
22
|
-
#
|
23
|
-
#############################################################################
|
1
|
+
"""
|
2
|
+
(Ewoks)Orange Widgets for debugging. To be used at your own risk and peril
|
3
|
+
"""
|
24
4
|
|
25
5
|
NAME = "debug tools"
|
26
6
|
|
@@ -1,26 +1,6 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
#
|
5
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
# of this software and associated documentation files (the "Software"), to deal
|
7
|
-
# in the Software without restriction, including without limitation the rights
|
8
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
# copies of the Software, and to permit persons to whom the Software is
|
10
|
-
# furnished to do so, subject to the following conditions:
|
11
|
-
#
|
12
|
-
# The above copyright notice and this permission notice shall be included in
|
13
|
-
# all copies or substantial portions of the Software.
|
14
|
-
#
|
15
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
# THE SOFTWARE.
|
22
|
-
#
|
23
|
-
#############################################################################
|
1
|
+
"""
|
2
|
+
(Ewoks)Orange Widgets for NXtomo edition
|
3
|
+
"""
|
24
4
|
|
25
5
|
NAME = "edit HDF5 - NXTomo"
|
26
6
|
|
@@ -1,26 +1,6 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
#
|
5
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
# of this software and associated documentation files (the "Software"), to deal
|
7
|
-
# in the Software without restriction, including without limitation the rights
|
8
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
# copies of the Software, and to permit persons to whom the Software is
|
10
|
-
# furnished to do so, subject to the following conditions:
|
11
|
-
#
|
12
|
-
# The above copyright notice and this permission notice shall be included in
|
13
|
-
# all copies or substantial portions of the Software.
|
14
|
-
#
|
15
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
# THE SOFTWARE.
|
22
|
-
#
|
23
|
-
#############################################################################
|
1
|
+
"""
|
2
|
+
(Ewoks)Orange Widgets for tomography not matching any other category
|
3
|
+
"""
|
24
4
|
|
25
5
|
NAME = "other"
|
26
6
|
|
@@ -1,26 +1,6 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
#
|
5
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
# of this software and associated documentation files (the "Software"), to deal
|
7
|
-
# in the Software without restriction, including without limitation the rights
|
8
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
# copies of the Software, and to permit persons to whom the Software is
|
10
|
-
# furnished to do so, subject to the following conditions:
|
11
|
-
#
|
12
|
-
# The above copyright notice and this permission notice shall be included in
|
13
|
-
# all copies or substantial portions of the Software.
|
14
|
-
#
|
15
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
# THE SOFTWARE.
|
22
|
-
#
|
23
|
-
#############################################################################
|
1
|
+
"""
|
2
|
+
(Ewoks)Orange Widgets for tomography core processing
|
3
|
+
"""
|
24
4
|
|
25
5
|
NAME = "reconstruction"
|
26
6
|
|
@@ -1,26 +1,6 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
#
|
5
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
# of this software and associated documentation files (the "Software"), to deal
|
7
|
-
# in the Software without restriction, including without limitation the rights
|
8
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
# copies of the Software, and to permit persons to whom the Software is
|
10
|
-
# furnished to do so, subject to the following conditions:
|
11
|
-
#
|
12
|
-
# The above copyright notice and this permission notice shall be included in
|
13
|
-
# all copies or substantial portions of the Software.
|
14
|
-
#
|
15
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
# THE SOFTWARE.
|
22
|
-
#
|
23
|
-
#############################################################################
|
1
|
+
"""
|
2
|
+
(Ewoks)Orange Widgets for tomography raw and processed data visualization
|
3
|
+
"""
|
24
4
|
|
25
5
|
NAME = "visualization"
|
26
6
|
|
tomwer/__init__.py
CHANGED
@@ -414,10 +414,12 @@ class _NabuBaseReconstructor:
|
|
414
414
|
:return: results of the slurm run
|
415
415
|
"""
|
416
416
|
if not isinstance(conf_file, str):
|
417
|
-
raise TypeError(
|
417
|
+
raise TypeError(
|
418
|
+
f"conf_file is expected to be a string not {type(conf_file)}"
|
419
|
+
)
|
418
420
|
if not isinstance(config_to_dump, dict):
|
419
421
|
raise TypeError(
|
420
|
-
f"config_to_dump is expected to be a
|
422
|
+
f"config_to_dump is expected to be a string not {type(config_to_dump)}"
|
421
423
|
)
|
422
424
|
if not is_slurm_available():
|
423
425
|
raise RuntimeError("slurm not available")
|
@@ -450,7 +452,7 @@ class _NabuBaseReconstructor:
|
|
450
452
|
job = SBatchScriptJob(
|
451
453
|
slurm_config=cluster_config,
|
452
454
|
script=(
|
453
|
-
f"python3 -m {settings.NABU_FULL_FIELD_APP_PATH} {conf_file} --gpu_mem_fraction {gpu_mem_fraction} --cpu_mem_fraction {cpu_mem_fraction}",
|
455
|
+
f"python3 -m {settings.NABU_FULL_FIELD_APP_PATH} '{conf_file}' --gpu_mem_fraction {gpu_mem_fraction} --cpu_mem_fraction {cpu_mem_fraction}",
|
454
456
|
),
|
455
457
|
script_path=os.path.join(self.scan.path, "slurm_scripts", script_name),
|
456
458
|
clean_script=False,
|
tomwer/core/utils/image.py
CHANGED
@@ -116,8 +116,8 @@ def scale_img2_to_img1(
|
|
116
116
|
else:
|
117
117
|
raise ValueError("method not managed", method)
|
118
118
|
|
119
|
-
vec0 = numpy.
|
120
|
-
matr = numpy.
|
119
|
+
vec0 = numpy.asmatrix([[min0], [me0], [max0]])
|
120
|
+
matr = numpy.asmatrix(
|
121
121
|
[[min1 * min1, min1, 1.0], [me1 * me1, me1, 1.0], [max1 * max1, max1, 1.0]]
|
122
122
|
)
|
123
123
|
vec1 = inv(matr) * vec0
|
@@ -10,6 +10,7 @@ from silx.gui.dialog.DataFileDialog import DataFileDialog
|
|
10
10
|
from silx.utils.enum import Enum as _Enum
|
11
11
|
|
12
12
|
from nxtomomill.io.utils import convert_str_to_tuple
|
13
|
+
from tomwer.core.utils.char import DEGREE_CHAR
|
13
14
|
from tomwer.core.process.reconstruction.nabu.plane import NabuPlane
|
14
15
|
from tomwer.core.process.reconstruction.nabu.nabuslices import NabuSliceMode
|
15
16
|
from tomwer.core.process.reconstruction.nabu.utils import (
|
@@ -449,11 +450,11 @@ class _NabuReconstructionConfig(qt.QWidget, _NabuStageConfigBase):
|
|
449
450
|
self.registerWidget(self._anglesFileWidget, "advanced")
|
450
451
|
|
451
452
|
# exclude projections: [A, B] (if user want's to skip projection from degree A to degree B (included))
|
452
|
-
self._excludeProjectionsQCB = qt.QCheckBox("exclude
|
453
|
+
self._excludeProjectionsQCB = qt.QCheckBox("exclude proj angles", self)
|
453
454
|
self.layout().addWidget(self._excludeProjectionsQCB, 24, 0, 1, 1)
|
454
455
|
self._excludeProjectionsWidget = RangeWidget(self)
|
455
456
|
self._excludeProjectionsWidget.setRange(0.0, 360.0)
|
456
|
-
self._excludeProjectionsWidget.setSuffix(
|
457
|
+
self._excludeProjectionsWidget.setSuffix(DEGREE_CHAR)
|
457
458
|
self._excludeProjectionsWidget.setToolTip(
|
458
459
|
"Projections with a rotation in [a, b] range will be ignored."
|
459
460
|
)
|
@@ -520,10 +520,10 @@ class NabuWidget(qt.QWidget):
|
|
520
520
|
# signal / slot connections
|
521
521
|
self._flow.sigConfigurationChanged.connect(self._processSelectionChanged)
|
522
522
|
self._flow.sigResetConfiguration.connect(self._processSelectionChanged)
|
523
|
-
self._configuration.sigConfChanged.connect(self.
|
524
|
-
self._nabuModeCB.currentIndexChanged.connect(self.
|
523
|
+
self._configuration.sigConfChanged.connect(self._triggerConfigChanged)
|
524
|
+
self._nabuModeCB.currentIndexChanged.connect(self._triggerConfigChanged)
|
525
525
|
|
526
|
-
def
|
526
|
+
def _triggerConfigChanged(self, *args, **kwargs):
|
527
527
|
self.sigConfigChanged.emit()
|
528
528
|
|
529
529
|
def isModeLocked(self) -> True:
|
@@ -0,0 +1,38 @@
|
|
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
|
tomwer/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: tomwer
|
3
|
-
Version: 1.4.
|
3
|
+
Version: 1.4.6
|
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
|
@@ -1,4 +1,4 @@
|
|
1
|
-
orangecontrib/tomwer/__init__.py,sha256=
|
1
|
+
orangecontrib/tomwer/__init__.py,sha256=E5i2PjCEuhPROPQU9zg7CMXhxpcgtBuYlIwk1KFLCrM,186
|
2
2
|
orangecontrib/tomwer/state_summary.py,sha256=5_dPzweL3r0ye4ZfJo6IV2ThJI8fQhWoO2ySdJJajj8,1711
|
3
3
|
orangecontrib/tomwer/orange/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
orangecontrib/tomwer/orange/managedprocess.py,sha256=0OMlOYnNq5hC-t6CWtDaERQ9k0bNMGaLzVT9fDyM1LE,3512
|
@@ -25,11 +25,11 @@ orangecontrib/tomwer/tutorials/id16b/ID16b_full_volume.ows,sha256=eSxYxrZ-0WKsmD
|
|
25
25
|
orangecontrib/tomwer/tutorials/id16b/ID16b_insitu.ows,sha256=lmn7C0LQIzJpxVJjHajyPKfJZZSHSNBG2x8uxnv6Zg8,29566
|
26
26
|
orangecontrib/tomwer/tutorials/id16b/ID16b_normalization.ows,sha256=kFGXGxc3eW7iG5TcAxaOwEwh1cvsKZEO3T_cA3mrd1k,22602
|
27
27
|
orangecontrib/tomwer/tutorials/id16b/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
28
|
-
orangecontrib/tomwer/widgets/__init__.py,sha256=
|
28
|
+
orangecontrib/tomwer/widgets/__init__.py,sha256=dX_TpkBh3mVsrj3EeGglEESsnZAEVq7V0Nb9bnBrb-8,1214
|
29
29
|
orangecontrib/tomwer/widgets/utils.py,sha256=yq1wZfpfY3iVAhwMRBls57q02lhljO89WRKN7MxMMNg,983
|
30
30
|
orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py,sha256=uvtstSQ3rRB_T0f734zPEZEelUQRe9btkjP7PJfj8zk,8176
|
31
31
|
orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py,sha256=L_fX3EFyyx71Fg-FI8ab34ZPSUzrwKGJLcS2FnYCY_c,2565
|
32
|
-
orangecontrib/tomwer/widgets/cluster/__init__.py,sha256=
|
32
|
+
orangecontrib/tomwer/widgets/cluster/__init__.py,sha256=vOOJnIIaLWAj8tnxD9MRzWDyYgk-cyuBsN7QQ5FrIoQ,385
|
33
33
|
orangecontrib/tomwer/widgets/cluster/icons/slurm.png,sha256=C-YBLwXCnh0oo4nvEt80WxX_jKYGUAFpWMUSlzt6ke0,1995
|
34
34
|
orangecontrib/tomwer/widgets/cluster/icons/slurm.svg,sha256=9LqiU88NH3ACxtZ8A7gTm-C_0ACR8iq0k_N2W1IFf9Q,9790
|
35
35
|
orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.png,sha256=sxH1V20s0JZPTCq82Fizz8Q9RHXwviapdStgZT8GBIM,3212
|
@@ -54,7 +54,7 @@ orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py,sha256=suxOdSAzqKKY3jTCe
|
|
54
54
|
orangecontrib/tomwer/widgets/control/TimerOW.py,sha256=nN5IXfNRmiZkcxVUYtmaifFqEBZlsPxuChPaEW6GvCo,3442
|
55
55
|
orangecontrib/tomwer/widgets/control/TomoObjSeriesOW.py,sha256=Db15EPVFPXxkIoEye2NbpyD_hAWmg1OkZVaeON7shVM,1905
|
56
56
|
orangecontrib/tomwer/widgets/control/VolumeSelector.py,sha256=2wDvqpmlHmmG2svlJd0oSTbXYbFv3xBKU63gp3LjoCg,4013
|
57
|
-
orangecontrib/tomwer/widgets/control/__init__.py,sha256=
|
57
|
+
orangecontrib/tomwer/widgets/control/__init__.py,sha256=F_-1j8jKiR-F4EU63uH4GwdOSypOVprH5VmLDvXxc6o,406
|
58
58
|
orangecontrib/tomwer/widgets/control/icons/advancement.png,sha256=Uv_Eb1nzkb6IVj0u4btrz5_DD126aYPZcls7U40jIEw,729
|
59
59
|
orangecontrib/tomwer/widgets/control/icons/advancement.svg,sha256=tNLbRofd2oT1bHov49X3q-YVNwtHEgrW3HfPc5i80js,5781
|
60
60
|
orangecontrib/tomwer/widgets/control/icons/concatenate_nxtomos.png,sha256=TzB-Npgual5npoBsUXt4QWfCCJA8nD8hLf3C-BjMRXs,768
|
@@ -97,12 +97,12 @@ orangecontrib/tomwer/widgets/control/icons/volumesymlink.png,sha256=Gf9qmYvxpnGM
|
|
97
97
|
orangecontrib/tomwer/widgets/control/icons/volumesymlink.svg,sha256=jVIt49I_7VeN9OQF1GeSujP_KwegQD4YFmIqOA-Jv9c,5786
|
98
98
|
orangecontrib/tomwer/widgets/control/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
99
99
|
orangecontrib/tomwer/widgets/dataportal/PublishProcessedDataOW.py,sha256=Sj2rRS_RKnDXLTbtxBprB51uV3_G4rbD-Sy5h75iQ_U,5724
|
100
|
-
orangecontrib/tomwer/widgets/dataportal/__init__.py,sha256=
|
100
|
+
orangecontrib/tomwer/widgets/dataportal/__init__.py,sha256=TXA_tTnf6PadfdG3gBi5hD6RvfcrIH2FWRHM2splEMQ,444
|
101
101
|
orangecontrib/tomwer/widgets/dataportal/icons/publish_processed_data.png,sha256=ZfThE_Or-fxNtnZnztNmLZ9XAS5sLTkOTpviE4xJN_s,2866
|
102
102
|
orangecontrib/tomwer/widgets/dataportal/icons/publish_processed_data.svg,sha256=RWwPD-d9NRdV5vRjE_STgC1v4hH0nEo7aeBtfKFhUH4,22489
|
103
103
|
orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py,sha256=gqtZw3UXtsdQQXz4uesIhwM3QdvGyTnxV35luybZ2As,5045
|
104
104
|
orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py,sha256=KEu0I4Y7EyZ6iKIBji-0nrg1qUXDGiJCcdTASymUc54,1106
|
105
|
-
orangecontrib/tomwer/widgets/debugtools/__init__.py,sha256=
|
105
|
+
orangecontrib/tomwer/widgets/debugtools/__init__.py,sha256=xtFgCF5BKyhxSOP7Xsg2aYtKD80qUnOX7iTSt34sYfo,346
|
106
106
|
orangecontrib/tomwer/widgets/debugtools/icons/hammer.png,sha256=5z_sXTWfAMCYhKbvLdiOmil8BpSxUICI_Y1BW9NL0Co,2034
|
107
107
|
orangecontrib/tomwer/widgets/debugtools/icons/hammer.svg,sha256=7uovCO-33EP_A6sjGzQMkvF59hdF_Aj1hzr5yIAfDjk,3191
|
108
108
|
orangecontrib/tomwer/widgets/debugtools/icons/inspector.png,sha256=sNTPrEEDGQHwU-O6hXBZfdmXeUWUarZPsL3s6l9opSE,1020
|
@@ -112,7 +112,7 @@ orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py,sha256=fJuVlzd5mBRWOwKxRltl
|
|
112
112
|
orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py,sha256=qTI6B3cA-THpW3I7GJsP808vMCGX2XoQ-LzUqBeyvtY,3506
|
113
113
|
orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py,sha256=X9IXgm65Nq1TeDnYYIuyo8KlYfda2LQ38MtX_9rLQj8,3672
|
114
114
|
orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py,sha256=PPSP8kqnkmHeeY4RW9IjH9n848W5MkCEQp4Emw8D17U,3744
|
115
|
-
orangecontrib/tomwer/widgets/edit/__init__.py,sha256=
|
115
|
+
orangecontrib/tomwer/widgets/edit/__init__.py,sha256=PpGNkRtMR-DnYWKixSHpvNqO8K2I9jpgeJ4NR_Gg5i0,314
|
116
116
|
orangecontrib/tomwer/widgets/edit/icons/image_key_editor.png,sha256=Fl6PEgzY9Gjs6Sh_vMWHCXVtNJ_wiQ5e9g58rZI64ng,878
|
117
117
|
orangecontrib/tomwer/widgets/edit/icons/image_key_editor.svg,sha256=9viXpjZxrXDx6qgWbRByvvqbBLcleUS1viFpSVDdFgg,7396
|
118
118
|
orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.png,sha256=jHnMOdF8A2H5KTZ0oG64OlKWA9MDhLW8L-mYS3HH4UA,998
|
@@ -143,7 +143,7 @@ orangecontrib/tomwer/widgets/icons/tomwer_visu.png,sha256=RuUI1bQwURe8iGkKhN3QzP
|
|
143
143
|
orangecontrib/tomwer/widgets/icons/tomwer_visu.svg,sha256=KGi42uPMqTtLtj5pYc6slvCPN53MOOI8b0iRQx2sSBM,18818
|
144
144
|
orangecontrib/tomwer/widgets/other/PythonScriptOW.py,sha256=49xYuqFsNZicGLX4hLHzQXsEwLr8v2CvrI43I4BL3o0,28273
|
145
145
|
orangecontrib/tomwer/widgets/other/TomoObjsHub.py,sha256=WMbqQO2LB7tFtzaeQirPt8ylKVvE4zxMvClsyImOGN8,886
|
146
|
-
orangecontrib/tomwer/widgets/other/__init__.py,sha256=
|
146
|
+
orangecontrib/tomwer/widgets/other/__init__.py,sha256=Y4LoexhNGqw5oKNHJ6yxQliPNPeQSAY6C9MQBULNg50,299
|
147
147
|
orangecontrib/tomwer/widgets/other/icons/PythonScript.svg,sha256=-8O2mNwRmyVdFvpcJsXLlOPcn50Sbv_qFHet1IF9T6A,5501
|
148
148
|
orangecontrib/tomwer/widgets/other/icons/hub.png,sha256=wnKSaxw2WnBkSQjI86aLZfdmKvV31Vputq1zukQIrXk,1122
|
149
149
|
orangecontrib/tomwer/widgets/other/icons/hub.svg,sha256=9EYoBKY-P-cO17nM48OPA9VDZSCbyGtrMRc80BGHflk,3735
|
@@ -157,7 +157,7 @@ orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py,sha256=j-jDhgv6jvNOB
|
|
157
157
|
orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py,sha256=6v57MWWDejzf5tcU3RqwQOIIsYyZn4lzP_JUq5WcElQ,17488
|
158
158
|
orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py,sha256=3-JUMNswoAVcycHLZBfZJGWyVDNKx6ZSz3ZgxxV1q2I,14005
|
159
159
|
orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py,sha256=HVia_JxLIpk6oP-6fza4wYhXsG3i2dLvA5XxrWfQpac,8843
|
160
|
-
orangecontrib/tomwer/widgets/reconstruction/__init__.py,sha256=
|
160
|
+
orangecontrib/tomwer/widgets/reconstruction/__init__.py,sha256=uMWYU54-b_YyVIpUrXus-BZd-3-7BHToTB-yFu5zbC0,372
|
161
161
|
orangecontrib/tomwer/widgets/reconstruction/icons/axis.png,sha256=aR8oqTY-fJVnlitEuiJmFIYSeRfZmbrEBO2InrwHHOk,1286
|
162
162
|
orangecontrib/tomwer/widgets/reconstruction/icons/axis.svg,sha256=JpLrZlH3IiAC7Ea53PwFIWZCPTY-BnlduJ_FEnY6sG8,5426
|
163
163
|
orangecontrib/tomwer/widgets/reconstruction/icons/bricks.png,sha256=nAVSPm14Ym1-nyGjSjw70x74WXto0AtzzoCBB0m80_Y,8121
|
@@ -187,7 +187,7 @@ orangecontrib/tomwer/widgets/reconstruction/icons/tomwer.png,sha256=M9IWm_TDKlSA
|
|
187
187
|
orangecontrib/tomwer/widgets/reconstruction/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
188
188
|
orangecontrib/tomwer/widgets/stitching/StitcherOW.py,sha256=j4UQPKYlGVcp2b5C9qntenKUltc9z-nMopjdE1SZMpw,2351
|
189
189
|
orangecontrib/tomwer/widgets/stitching/ZStitchingConfigOW.py,sha256=IMYeOLCxPEF6XVGljWochfKvPsyaYW0jRF8foP51BpU,3271
|
190
|
-
orangecontrib/tomwer/widgets/stitching/__init__.py,sha256=
|
190
|
+
orangecontrib/tomwer/widgets/stitching/__init__.py,sha256=3M-zKPHcJMwqiaY3gck-D6I0M4CuHOuV0eRyiXYgVl8,330
|
191
191
|
orangecontrib/tomwer/widgets/stitching/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
192
192
|
orangecontrib/tomwer/widgets/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
193
193
|
orangecontrib/tomwer/widgets/visualization/DataViewerOW.py,sha256=pONhuu2Uu0FX2cbgWl3R_HT6OLh-vXRrKFKYrMPOsD8,4059
|
@@ -198,7 +198,7 @@ orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py,sha256=5uoA6SST3S-oU
|
|
198
198
|
orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py,sha256=hwBO0OXArhHSRPGAXK4E8FxWB90Ox_2xMYuEeNahdMs,1876
|
199
199
|
orangecontrib/tomwer/widgets/visualization/SliceStackOW.py,sha256=4z0GBlIMQB5mBwOoToWKTSt014EWmuV7-QvBI6KW0oc,2756
|
200
200
|
orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py,sha256=63lyoHyxRtdk7_jeLRVgj9ZDzRtac4-o9ZuqrmEHJ00,1865
|
201
|
-
orangecontrib/tomwer/widgets/visualization/__init__.py,sha256=
|
201
|
+
orangecontrib/tomwer/widgets/visualization/__init__.py,sha256=tMH57IHTUAp0kCNtubCZsmhy7fL_SvAx003jRY72O5k,396
|
202
202
|
orangecontrib/tomwer/widgets/visualization/icons/diff.png,sha256=2U0kPm-BhgDJsUAmBLCBSkJOkG2s3uSE5egegbwxrOU,378
|
203
203
|
orangecontrib/tomwer/widgets/visualization/icons/diff.svg,sha256=ylAT_OgqRhiC81w06XCaE2lVUOYOW8XtuU3Hb_IV5UI,7693
|
204
204
|
orangecontrib/tomwer/widgets/visualization/icons/esrf.png,sha256=keM4tfcuTQ3k3IGxx3tOW5sHiyegJgmbvYklo6e2M5U,105862
|
@@ -217,10 +217,10 @@ orangecontrib/tomwer/widgets/visualization/icons/tomwer.png,sha256=M9IWm_TDKlSA6
|
|
217
217
|
orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.png,sha256=8XwGE5maqQdjmU7_EWcqiuOG7xsf7ycNUJ_40UvpYeA,4372
|
218
218
|
orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.svg,sha256=2uT9_px6VBxkC6RxD0QrQVzcBusDlNVKwekh551EF0A,8454
|
219
219
|
orangecontrib/tomwer/widgets/visualization/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
220
|
-
tomwer/__init__.py,sha256=
|
220
|
+
tomwer/__init__.py,sha256=cMIyH-uRxpa9WVnAuWjiBD7k9TK57WO21RzP_S-Mb8I,460
|
221
221
|
tomwer/__main__.py,sha256=7tCADiS4u7k1PCxFhlRAcYSIOpxQTGUTx8sCEQ-hi1E,8707
|
222
222
|
tomwer/utils.py,sha256=7h7dEgKAEUmQ43jkULvC1B9Adl55nkCty-SEKUKCl4U,7008
|
223
|
-
tomwer/version.py,sha256=
|
223
|
+
tomwer/version.py,sha256=69GoZku3KcVoMi8E2-7j4OrMNv9ytmND71aPCf4NsY8,4386
|
224
224
|
tomwer/app/__init__.py,sha256=RYMB2YhbQaoMXC8W-oOyfZ_Y1vmHD7L13YkKeAMuShM,85
|
225
225
|
tomwer/app/axis.py,sha256=OhDgMj_gS-45PnjKBTyOCOkmZ1Iy-Tb6Dj66mzQg0sU,5827
|
226
226
|
tomwer/app/canvas.py,sha256=sM368nniUwbQXLA-oNCg1iNwMMol_ZGTKbiw8WsC4yw,1539
|
@@ -335,7 +335,7 @@ tomwer/core/process/reconstruction/darkref/settings.py,sha256=35jliuOIjMKTOJjgn4
|
|
335
335
|
tomwer/core/process/reconstruction/nabu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
336
336
|
tomwer/core/process/reconstruction/nabu/castvolume.py,sha256=4VEVnJxWfG8_Ku2uhUSQAgGfvP_08mXswmC3bHU7E4M,9317
|
337
337
|
tomwer/core/process/reconstruction/nabu/helical.py,sha256=gauUkoPiShvnvMQrCQXv28g0yLe-GceML5kYMSXmNIg,1997
|
338
|
-
tomwer/core/process/reconstruction/nabu/nabucommon.py,sha256
|
338
|
+
tomwer/core/process/reconstruction/nabu/nabucommon.py,sha256=fMMplu59iuh5bh_06JIVtSWRPXpThL4NJD_JRl8NVNk,24555
|
339
339
|
tomwer/core/process/reconstruction/nabu/nabuscores.py,sha256=e5tRG1QtmVAdXb8KHMTMtBXA3KQXqKKcqipY2HzMURg,25275
|
340
340
|
tomwer/core/process/reconstruction/nabu/nabuslices.py,sha256=WAmNlfyRWL0zhEE8jMjMg7WyzPM4BcBA6bWpaH8O53A,32101
|
341
341
|
tomwer/core/process/reconstruction/nabu/nabuvolume.py,sha256=Fn0tkPDTDJQaMEJA4LzpPp0ZtG4MIu9YN82-jesxRKo,20052
|
@@ -427,7 +427,7 @@ tomwer/core/utils/deprecation.py,sha256=D3hS_ZzBQgjYG5UmZW5KaPPlHaH1OZVXePGCdIVt
|
|
427
427
|
tomwer/core/utils/dictutils.py,sha256=9BEwERAYGL4tW06jTNGhgsJ2f4dojtYMmNixHoRF3XA,466
|
428
428
|
tomwer/core/utils/ftseriesutils.py,sha256=HIiUzEPO9k3dRAYr0WB4LYqEifQ624r1HqMi3TaVHMA,1064
|
429
429
|
tomwer/core/utils/gpu.py,sha256=4s0A3DViEKBvUtfKl0GzddZJyLCLeRJgKZpnIjihvyE,458
|
430
|
-
tomwer/core/utils/image.py,sha256=
|
430
|
+
tomwer/core/utils/image.py,sha256=vjUGRSFEn8WdlZ_2jpHHgVQjx4ac1Qa_0Cgspo-bR1c,3527
|
431
431
|
tomwer/core/utils/lbsram.py,sha256=MOhgaDUBsIt2fU2KVPBy9lsJ7BGwXZCc0VDKK3tH2HI,988
|
432
432
|
tomwer/core/utils/logconfig.py,sha256=p3ggqsukcsksEFhLztYjX8tRcUD3VMn9JVCvFpSUplM,85
|
433
433
|
tomwer/core/utils/normalization.py,sha256=078TPG4wY9JhUOAqKZmN50w2j-7-cEs30UmiXNlYKOs,1548
|
@@ -561,7 +561,7 @@ tomwer/gui/reconstruction/nabu/check.py,sha256=5DYLlVCyXm3ax5VgogX79n1Oyl3O_JUvZ
|
|
561
561
|
tomwer/gui/reconstruction/nabu/helical.py,sha256=TAVPcuZdgtZSz37ESqi_yuLhYuNnGde_0drvjTntahs,3708
|
562
562
|
tomwer/gui/reconstruction/nabu/nabuflow.py,sha256=1qen0DnEDMAM1lqNaJJL_QT_h0VeRz_KxN7GDG9G0Iw,15508
|
563
563
|
tomwer/gui/reconstruction/nabu/platform.py,sha256=eSPs2yUfBSHsqZ8bYY_BJ7zuRXc5sxXA4lRxlQaFBz0,3859
|
564
|
-
tomwer/gui/reconstruction/nabu/slices.py,sha256=
|
564
|
+
tomwer/gui/reconstruction/nabu/slices.py,sha256=cGfdtvpTqJ0sujMIxjf0xyTgSl6YlRRAGcPGlTkVRaw,24380
|
565
565
|
tomwer/gui/reconstruction/nabu/slurm.py,sha256=yfJD8KgX45Be5CUi6bn2CdocrQemJPxDYBBqoLoXqn0,1268
|
566
566
|
tomwer/gui/reconstruction/nabu/volume.py,sha256=nqJvoj4dIMbLGNxXzxHngM5V0PBoyPOMvwbNGPAXSas,17837
|
567
567
|
tomwer/gui/reconstruction/nabu/nabuconfig/__init__.py,sha256=WgEFXIrUDhX0vpBNlKiymHEY9p1DMdk4QZkvnXIC8yk,77
|
@@ -571,7 +571,7 @@ tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py,sha256=rJXFMr_dlTekd0mCb
|
|
571
571
|
tomwer/gui/reconstruction/nabu/nabuconfig/output.py,sha256=0SShYqvFj-motxTw20e3I1Z0WiierSqgOsN15qwe-TY,11907
|
572
572
|
tomwer/gui/reconstruction/nabu/nabuconfig/phase.py,sha256=h4F0qtKXOeligVuqKa-pBAvP2ol2EgfSRHjxvsQkvAQ,16293
|
573
573
|
tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py,sha256=lmL2UTL7gt20nbDv921SFIAnVoJkumafSCjqTE4zGlY,32608
|
574
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py,sha256=
|
574
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py,sha256=O1h59xVaDr0TDmP7hia_1nQQ01uNyos2oqVYLCpIkfk,41198
|
575
575
|
tomwer/gui/reconstruction/nabu/test/test_cast_volume.py,sha256=kup5JVKNN4QZOXYGco1ZRb_4TWrXAQOtfuQcqTpraA0,2764
|
576
576
|
tomwer/gui/reconstruction/nabu/test/test_check.py,sha256=KXg1Gg4FVjQ9GkBOgb0ZJh6_c3JMeJTtyX5UVY6vdms,2318
|
577
577
|
tomwer/gui/reconstruction/nabu/test/test_ctf.py,sha256=uiJznrY6ScH51xaaSUFfplg9XJcFacczIV8_7k9tuRg,1554
|
@@ -848,6 +848,7 @@ tomwer/synctools/tests/test_darkRefs.py,sha256=1OgWaV-hgDmi4rkh0hxjCW_codBAnxNhp
|
|
848
848
|
tomwer/synctools/tests/test_foldertransfer.py,sha256=ZFIJWSjgYAWw3ktzamid5DJZNnMkAV6Pj72dKG69cJc,12024
|
849
849
|
tomwer/synctools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
850
850
|
tomwer/synctools/utils/scanstages.py,sha256=vIUKVDSfM2UwPjjmZTiIN1tNg4antnGcSPv1aYapJCY,7830
|
851
|
+
tomwer/tasks/reconstruction/cleardarkflat.py,sha256=NW7xtaxF8-VRz0fFOUyotnyG5514YamwPtX6r2SZ-0s,1329
|
851
852
|
tomwer/tests/__init__.py,sha256=dPPaIvpzHssjwxsMzYJM_gxQ2e0cnRyQHXxi9ux6ZOY,19
|
852
853
|
tomwer/tests/conftest.py,sha256=0XlKfOrVtPg8VmyQn4BoK_mzcliFUtacDGLlZ5wD_PM,1912
|
853
854
|
tomwer/tests/datasets.py,sha256=QXQ3jSwgWzfq4CaELOSrk9kHg5GmrP7kGHsdOlNSEIE,336
|
@@ -904,9 +905,9 @@ tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_volume_viewer
|
|
904
905
|
tomwer/tests/test_ewoks/test_conversion.py,sha256=a8cEWbErXiFCAkaapi0jeEoRKYxcFQCoa-Jr_u77_OM,3656
|
905
906
|
tomwer/tests/test_ewoks/test_single_node_execution.py,sha256=YBUHfiAnkciv_kjj7biC5fOs7c7ofNImM_azGMn4LZM,2813
|
906
907
|
tomwer/tests/test_ewoks/test_workflows.py,sha256=Eq80eexf5NVL7SzvwctLOaUeuQ8V3vDiFiHgbJA4Yb8,4871
|
907
|
-
tomwer-1.4.
|
908
|
-
tomwer-1.4.
|
909
|
-
tomwer-1.4.
|
910
|
-
tomwer-1.4.
|
911
|
-
tomwer-1.4.
|
912
|
-
tomwer-1.4.
|
908
|
+
tomwer-1.4.6.dist-info/LICENSE,sha256=62p1wL0n9WMTu8x2YDv0odYgTqeSvTd9mQ0v6Mq7lzE,1876
|
909
|
+
tomwer-1.4.6.dist-info/METADATA,sha256=TQPiVdXJJAx3zhFXOq4jRbjX0WSafNX2ZmOyrDeTQWk,13377
|
910
|
+
tomwer-1.4.6.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
911
|
+
tomwer-1.4.6.dist-info/entry_points.txt,sha256=py3ZUWvGnWGc5c7Yhw_uBTm8Fmew0BDw3aQZnWMBNZI,500
|
912
|
+
tomwer-1.4.6.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
|
913
|
+
tomwer-1.4.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|