tomwer 1.4.5__py3-none-any.whl → 1.4.7__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/tests/TestAcquisition.py +1 -3
- 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/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/reconstruction/axis/axis.py +1 -2
- tomwer/core/process/reconstruction/nabu/nabucommon.py +6 -5
- 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/core/utils/image.py +2 -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/reconstruction/nabu/nabuconfig/reconstruction.py +3 -2
- tomwer/gui/reconstruction/nabu/slices.py +3 -3
- 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.5.dist-info → tomwer-1.4.7.dist-info}/METADATA +4 -3
- {tomwer-1.4.5.dist-info → tomwer-1.4.7.dist-info}/RECORD +69 -70
- {tomwer-1.4.5.dist-info → tomwer-1.4.7.dist-info}/WHEEL +1 -1
- orangecontrib/tomwer/tutorials/test_cor.ows +0 -19
- {tomwer-1.4.5.dist-info → tomwer-1.4.7.dist-info}/LICENSE +0 -0
- {tomwer-1.4.5.dist-info → tomwer-1.4.7.dist-info}/entry_points.txt +0 -0
- {tomwer-1.4.5.dist-info → tomwer-1.4.7.dist-info}/top_level.txt +0 -0
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...)"""
|
@@ -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:
|
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
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: tomwer
|
3
|
-
Version: 1.4.
|
3
|
+
Version: 1.4.7
|
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
|
@@ -1,9 +1,9 @@
|
|
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
|
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,18 +18,17 @@ 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
|
25
24
|
orangecontrib/tomwer/tutorials/id16b/ID16b_insitu.ows,sha256=lmn7C0LQIzJpxVJjHajyPKfJZZSHSNBG2x8uxnv6Zg8,29566
|
26
25
|
orangecontrib/tomwer/tutorials/id16b/ID16b_normalization.ows,sha256=kFGXGxc3eW7iG5TcAxaOwEwh1cvsKZEO3T_cA3mrd1k,22602
|
27
26
|
orangecontrib/tomwer/tutorials/id16b/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
28
|
-
orangecontrib/tomwer/widgets/__init__.py,sha256=
|
27
|
+
orangecontrib/tomwer/widgets/__init__.py,sha256=dX_TpkBh3mVsrj3EeGglEESsnZAEVq7V0Nb9bnBrb-8,1214
|
29
28
|
orangecontrib/tomwer/widgets/utils.py,sha256=yq1wZfpfY3iVAhwMRBls57q02lhljO89WRKN7MxMMNg,983
|
30
29
|
orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py,sha256=uvtstSQ3rRB_T0f734zPEZEelUQRe9btkjP7PJfj8zk,8176
|
31
30
|
orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py,sha256=L_fX3EFyyx71Fg-FI8ab34ZPSUzrwKGJLcS2FnYCY_c,2565
|
32
|
-
orangecontrib/tomwer/widgets/cluster/__init__.py,sha256=
|
31
|
+
orangecontrib/tomwer/widgets/cluster/__init__.py,sha256=vOOJnIIaLWAj8tnxD9MRzWDyYgk-cyuBsN7QQ5FrIoQ,385
|
33
32
|
orangecontrib/tomwer/widgets/cluster/icons/slurm.png,sha256=C-YBLwXCnh0oo4nvEt80WxX_jKYGUAFpWMUSlzt6ke0,1995
|
34
33
|
orangecontrib/tomwer/widgets/cluster/icons/slurm.svg,sha256=9LqiU88NH3ACxtZ8A7gTm-C_0ACR8iq0k_N2W1IFf9Q,9790
|
35
34
|
orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.png,sha256=sxH1V20s0JZPTCq82Fizz8Q9RHXwviapdStgZT8GBIM,3212
|
@@ -54,7 +53,7 @@ orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py,sha256=suxOdSAzqKKY3jTCe
|
|
54
53
|
orangecontrib/tomwer/widgets/control/TimerOW.py,sha256=nN5IXfNRmiZkcxVUYtmaifFqEBZlsPxuChPaEW6GvCo,3442
|
55
54
|
orangecontrib/tomwer/widgets/control/TomoObjSeriesOW.py,sha256=Db15EPVFPXxkIoEye2NbpyD_hAWmg1OkZVaeON7shVM,1905
|
56
55
|
orangecontrib/tomwer/widgets/control/VolumeSelector.py,sha256=2wDvqpmlHmmG2svlJd0oSTbXYbFv3xBKU63gp3LjoCg,4013
|
57
|
-
orangecontrib/tomwer/widgets/control/__init__.py,sha256=
|
56
|
+
orangecontrib/tomwer/widgets/control/__init__.py,sha256=F_-1j8jKiR-F4EU63uH4GwdOSypOVprH5VmLDvXxc6o,406
|
58
57
|
orangecontrib/tomwer/widgets/control/icons/advancement.png,sha256=Uv_Eb1nzkb6IVj0u4btrz5_DD126aYPZcls7U40jIEw,729
|
59
58
|
orangecontrib/tomwer/widgets/control/icons/advancement.svg,sha256=tNLbRofd2oT1bHov49X3q-YVNwtHEgrW3HfPc5i80js,5781
|
60
59
|
orangecontrib/tomwer/widgets/control/icons/concatenate_nxtomos.png,sha256=TzB-Npgual5npoBsUXt4QWfCCJA8nD8hLf3C-BjMRXs,768
|
@@ -97,12 +96,12 @@ orangecontrib/tomwer/widgets/control/icons/volumesymlink.png,sha256=Gf9qmYvxpnGM
|
|
97
96
|
orangecontrib/tomwer/widgets/control/icons/volumesymlink.svg,sha256=jVIt49I_7VeN9OQF1GeSujP_KwegQD4YFmIqOA-Jv9c,5786
|
98
97
|
orangecontrib/tomwer/widgets/control/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
99
98
|
orangecontrib/tomwer/widgets/dataportal/PublishProcessedDataOW.py,sha256=Sj2rRS_RKnDXLTbtxBprB51uV3_G4rbD-Sy5h75iQ_U,5724
|
100
|
-
orangecontrib/tomwer/widgets/dataportal/__init__.py,sha256=
|
99
|
+
orangecontrib/tomwer/widgets/dataportal/__init__.py,sha256=TXA_tTnf6PadfdG3gBi5hD6RvfcrIH2FWRHM2splEMQ,444
|
101
100
|
orangecontrib/tomwer/widgets/dataportal/icons/publish_processed_data.png,sha256=ZfThE_Or-fxNtnZnztNmLZ9XAS5sLTkOTpviE4xJN_s,2866
|
102
101
|
orangecontrib/tomwer/widgets/dataportal/icons/publish_processed_data.svg,sha256=RWwPD-d9NRdV5vRjE_STgC1v4hH0nEo7aeBtfKFhUH4,22489
|
103
102
|
orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py,sha256=gqtZw3UXtsdQQXz4uesIhwM3QdvGyTnxV35luybZ2As,5045
|
104
103
|
orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py,sha256=KEu0I4Y7EyZ6iKIBji-0nrg1qUXDGiJCcdTASymUc54,1106
|
105
|
-
orangecontrib/tomwer/widgets/debugtools/__init__.py,sha256=
|
104
|
+
orangecontrib/tomwer/widgets/debugtools/__init__.py,sha256=xtFgCF5BKyhxSOP7Xsg2aYtKD80qUnOX7iTSt34sYfo,346
|
106
105
|
orangecontrib/tomwer/widgets/debugtools/icons/hammer.png,sha256=5z_sXTWfAMCYhKbvLdiOmil8BpSxUICI_Y1BW9NL0Co,2034
|
107
106
|
orangecontrib/tomwer/widgets/debugtools/icons/hammer.svg,sha256=7uovCO-33EP_A6sjGzQMkvF59hdF_Aj1hzr5yIAfDjk,3191
|
108
107
|
orangecontrib/tomwer/widgets/debugtools/icons/inspector.png,sha256=sNTPrEEDGQHwU-O6hXBZfdmXeUWUarZPsL3s6l9opSE,1020
|
@@ -112,7 +111,7 @@ orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py,sha256=fJuVlzd5mBRWOwKxRltl
|
|
112
111
|
orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py,sha256=qTI6B3cA-THpW3I7GJsP808vMCGX2XoQ-LzUqBeyvtY,3506
|
113
112
|
orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py,sha256=X9IXgm65Nq1TeDnYYIuyo8KlYfda2LQ38MtX_9rLQj8,3672
|
114
113
|
orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py,sha256=PPSP8kqnkmHeeY4RW9IjH9n848W5MkCEQp4Emw8D17U,3744
|
115
|
-
orangecontrib/tomwer/widgets/edit/__init__.py,sha256=
|
114
|
+
orangecontrib/tomwer/widgets/edit/__init__.py,sha256=PpGNkRtMR-DnYWKixSHpvNqO8K2I9jpgeJ4NR_Gg5i0,314
|
116
115
|
orangecontrib/tomwer/widgets/edit/icons/image_key_editor.png,sha256=Fl6PEgzY9Gjs6Sh_vMWHCXVtNJ_wiQ5e9g58rZI64ng,878
|
117
116
|
orangecontrib/tomwer/widgets/edit/icons/image_key_editor.svg,sha256=9viXpjZxrXDx6qgWbRByvvqbBLcleUS1viFpSVDdFgg,7396
|
118
117
|
orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.png,sha256=jHnMOdF8A2H5KTZ0oG64OlKWA9MDhLW8L-mYS3HH4UA,998
|
@@ -143,7 +142,7 @@ orangecontrib/tomwer/widgets/icons/tomwer_visu.png,sha256=RuUI1bQwURe8iGkKhN3QzP
|
|
143
142
|
orangecontrib/tomwer/widgets/icons/tomwer_visu.svg,sha256=KGi42uPMqTtLtj5pYc6slvCPN53MOOI8b0iRQx2sSBM,18818
|
144
143
|
orangecontrib/tomwer/widgets/other/PythonScriptOW.py,sha256=49xYuqFsNZicGLX4hLHzQXsEwLr8v2CvrI43I4BL3o0,28273
|
145
144
|
orangecontrib/tomwer/widgets/other/TomoObjsHub.py,sha256=WMbqQO2LB7tFtzaeQirPt8ylKVvE4zxMvClsyImOGN8,886
|
146
|
-
orangecontrib/tomwer/widgets/other/__init__.py,sha256=
|
145
|
+
orangecontrib/tomwer/widgets/other/__init__.py,sha256=Y4LoexhNGqw5oKNHJ6yxQliPNPeQSAY6C9MQBULNg50,299
|
147
146
|
orangecontrib/tomwer/widgets/other/icons/PythonScript.svg,sha256=-8O2mNwRmyVdFvpcJsXLlOPcn50Sbv_qFHet1IF9T6A,5501
|
148
147
|
orangecontrib/tomwer/widgets/other/icons/hub.png,sha256=wnKSaxw2WnBkSQjI86aLZfdmKvV31Vputq1zukQIrXk,1122
|
149
148
|
orangecontrib/tomwer/widgets/other/icons/hub.svg,sha256=9EYoBKY-P-cO17nM48OPA9VDZSCbyGtrMRc80BGHflk,3735
|
@@ -157,7 +156,7 @@ orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py,sha256=j-jDhgv6jvNOB
|
|
157
156
|
orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py,sha256=6v57MWWDejzf5tcU3RqwQOIIsYyZn4lzP_JUq5WcElQ,17488
|
158
157
|
orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py,sha256=3-JUMNswoAVcycHLZBfZJGWyVDNKx6ZSz3ZgxxV1q2I,14005
|
159
158
|
orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py,sha256=HVia_JxLIpk6oP-6fza4wYhXsG3i2dLvA5XxrWfQpac,8843
|
160
|
-
orangecontrib/tomwer/widgets/reconstruction/__init__.py,sha256=
|
159
|
+
orangecontrib/tomwer/widgets/reconstruction/__init__.py,sha256=uMWYU54-b_YyVIpUrXus-BZd-3-7BHToTB-yFu5zbC0,372
|
161
160
|
orangecontrib/tomwer/widgets/reconstruction/icons/axis.png,sha256=aR8oqTY-fJVnlitEuiJmFIYSeRfZmbrEBO2InrwHHOk,1286
|
162
161
|
orangecontrib/tomwer/widgets/reconstruction/icons/axis.svg,sha256=JpLrZlH3IiAC7Ea53PwFIWZCPTY-BnlduJ_FEnY6sG8,5426
|
163
162
|
orangecontrib/tomwer/widgets/reconstruction/icons/bricks.png,sha256=nAVSPm14Ym1-nyGjSjw70x74WXto0AtzzoCBB0m80_Y,8121
|
@@ -187,7 +186,7 @@ orangecontrib/tomwer/widgets/reconstruction/icons/tomwer.png,sha256=M9IWm_TDKlSA
|
|
187
186
|
orangecontrib/tomwer/widgets/reconstruction/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
188
187
|
orangecontrib/tomwer/widgets/stitching/StitcherOW.py,sha256=j4UQPKYlGVcp2b5C9qntenKUltc9z-nMopjdE1SZMpw,2351
|
189
188
|
orangecontrib/tomwer/widgets/stitching/ZStitchingConfigOW.py,sha256=IMYeOLCxPEF6XVGljWochfKvPsyaYW0jRF8foP51BpU,3271
|
190
|
-
orangecontrib/tomwer/widgets/stitching/__init__.py,sha256=
|
189
|
+
orangecontrib/tomwer/widgets/stitching/__init__.py,sha256=3M-zKPHcJMwqiaY3gck-D6I0M4CuHOuV0eRyiXYgVl8,330
|
191
190
|
orangecontrib/tomwer/widgets/stitching/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
192
191
|
orangecontrib/tomwer/widgets/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
193
192
|
orangecontrib/tomwer/widgets/visualization/DataViewerOW.py,sha256=pONhuu2Uu0FX2cbgWl3R_HT6OLh-vXRrKFKYrMPOsD8,4059
|
@@ -198,7 +197,7 @@ orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py,sha256=5uoA6SST3S-oU
|
|
198
197
|
orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py,sha256=hwBO0OXArhHSRPGAXK4E8FxWB90Ox_2xMYuEeNahdMs,1876
|
199
198
|
orangecontrib/tomwer/widgets/visualization/SliceStackOW.py,sha256=4z0GBlIMQB5mBwOoToWKTSt014EWmuV7-QvBI6KW0oc,2756
|
200
199
|
orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py,sha256=63lyoHyxRtdk7_jeLRVgj9ZDzRtac4-o9ZuqrmEHJ00,1865
|
201
|
-
orangecontrib/tomwer/widgets/visualization/__init__.py,sha256=
|
200
|
+
orangecontrib/tomwer/widgets/visualization/__init__.py,sha256=tMH57IHTUAp0kCNtubCZsmhy7fL_SvAx003jRY72O5k,396
|
202
201
|
orangecontrib/tomwer/widgets/visualization/icons/diff.png,sha256=2U0kPm-BhgDJsUAmBLCBSkJOkG2s3uSE5egegbwxrOU,378
|
203
202
|
orangecontrib/tomwer/widgets/visualization/icons/diff.svg,sha256=ylAT_OgqRhiC81w06XCaE2lVUOYOW8XtuU3Hb_IV5UI,7693
|
204
203
|
orangecontrib/tomwer/widgets/visualization/icons/esrf.png,sha256=keM4tfcuTQ3k3IGxx3tOW5sHiyegJgmbvYklo6e2M5U,105862
|
@@ -217,30 +216,30 @@ orangecontrib/tomwer/widgets/visualization/icons/tomwer.png,sha256=M9IWm_TDKlSA6
|
|
217
216
|
orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.png,sha256=8XwGE5maqQdjmU7_EWcqiuOG7xsf7ycNUJ_40UvpYeA,4372
|
218
217
|
orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.svg,sha256=2uT9_px6VBxkC6RxD0QrQVzcBusDlNVKwekh551EF0A,8454
|
219
218
|
orangecontrib/tomwer/widgets/visualization/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
220
|
-
tomwer/__init__.py,sha256=
|
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=kSCzrMOEuSMZFSQbR90fj1YYaNmCYltkc0D3FMs6UT0,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
|
@@ -322,7 +321,7 @@ tomwer/core/process/reconstruction/params_cache.py,sha256=GTchgCH1Db7fuYsSGxSF6w
|
|
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
|
@@ -335,7 +334,7 @@ tomwer/core/process/reconstruction/darkref/settings.py,sha256=35jliuOIjMKTOJjgn4
|
|
335
334
|
tomwer/core/process/reconstruction/nabu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
336
335
|
tomwer/core/process/reconstruction/nabu/castvolume.py,sha256=4VEVnJxWfG8_Ku2uhUSQAgGfvP_08mXswmC3bHU7E4M,9317
|
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,13 +420,13 @@ 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
|
428
427
|
tomwer/core/utils/ftseriesutils.py,sha256=HIiUzEPO9k3dRAYr0WB4LYqEifQ624r1HqMi3TaVHMA,1064
|
429
428
|
tomwer/core/utils/gpu.py,sha256=4s0A3DViEKBvUtfKl0GzddZJyLCLeRJgKZpnIjihvyE,458
|
430
|
-
tomwer/core/utils/image.py,sha256=
|
429
|
+
tomwer/core/utils/image.py,sha256=vjUGRSFEn8WdlZ_2jpHHgVQjx4ac1Qa_0Cgspo-bR1c,3527
|
431
430
|
tomwer/core/utils/lbsram.py,sha256=MOhgaDUBsIt2fU2KVPBy9lsJ7BGwXZCc0VDKK3tH2HI,988
|
432
431
|
tomwer/core/utils/logconfig.py,sha256=p3ggqsukcsksEFhLztYjX8tRcUD3VMn9JVCvFpSUplM,85
|
433
432
|
tomwer/core/utils/normalization.py,sha256=078TPG4wY9JhUOAqKZmN50w2j-7-cEs30UmiXNlYKOs,1548
|
@@ -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
|
@@ -561,7 +560,7 @@ tomwer/gui/reconstruction/nabu/check.py,sha256=5DYLlVCyXm3ax5VgogX79n1Oyl3O_JUvZ
|
|
561
560
|
tomwer/gui/reconstruction/nabu/helical.py,sha256=TAVPcuZdgtZSz37ESqi_yuLhYuNnGde_0drvjTntahs,3708
|
562
561
|
tomwer/gui/reconstruction/nabu/nabuflow.py,sha256=1qen0DnEDMAM1lqNaJJL_QT_h0VeRz_KxN7GDG9G0Iw,15508
|
563
562
|
tomwer/gui/reconstruction/nabu/platform.py,sha256=eSPs2yUfBSHsqZ8bYY_BJ7zuRXc5sxXA4lRxlQaFBz0,3859
|
564
|
-
tomwer/gui/reconstruction/nabu/slices.py,sha256=
|
563
|
+
tomwer/gui/reconstruction/nabu/slices.py,sha256=cGfdtvpTqJ0sujMIxjf0xyTgSl6YlRRAGcPGlTkVRaw,24380
|
565
564
|
tomwer/gui/reconstruction/nabu/slurm.py,sha256=yfJD8KgX45Be5CUi6bn2CdocrQemJPxDYBBqoLoXqn0,1268
|
566
565
|
tomwer/gui/reconstruction/nabu/volume.py,sha256=nqJvoj4dIMbLGNxXzxHngM5V0PBoyPOMvwbNGPAXSas,17837
|
567
566
|
tomwer/gui/reconstruction/nabu/nabuconfig/__init__.py,sha256=WgEFXIrUDhX0vpBNlKiymHEY9p1DMdk4QZkvnXIC8yk,77
|
@@ -571,7 +570,7 @@ tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py,sha256=rJXFMr_dlTekd0mCb
|
|
571
570
|
tomwer/gui/reconstruction/nabu/nabuconfig/output.py,sha256=0SShYqvFj-motxTw20e3I1Z0WiierSqgOsN15qwe-TY,11907
|
572
571
|
tomwer/gui/reconstruction/nabu/nabuconfig/phase.py,sha256=h4F0qtKXOeligVuqKa-pBAvP2ol2EgfSRHjxvsQkvAQ,16293
|
573
572
|
tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py,sha256=lmL2UTL7gt20nbDv921SFIAnVoJkumafSCjqTE4zGlY,32608
|
574
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py,sha256=
|
573
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py,sha256=O1h59xVaDr0TDmP7hia_1nQQ01uNyos2oqVYLCpIkfk,41198
|
575
574
|
tomwer/gui/reconstruction/nabu/test/test_cast_volume.py,sha256=kup5JVKNN4QZOXYGco1ZRb_4TWrXAQOtfuQcqTpraA0,2764
|
576
575
|
tomwer/gui/reconstruction/nabu/test/test_check.py,sha256=KXg1Gg4FVjQ9GkBOgb0ZJh6_c3JMeJTtyX5UVY6vdms,2318
|
577
576
|
tomwer/gui/reconstruction/nabu/test/test_ctf.py,sha256=uiJznrY6ScH51xaaSUFfplg9XJcFacczIV8_7k9tuRg,1554
|
@@ -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
|
@@ -904,9 +903,9 @@ tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_volume_viewer
|
|
904
903
|
tomwer/tests/test_ewoks/test_conversion.py,sha256=a8cEWbErXiFCAkaapi0jeEoRKYxcFQCoa-Jr_u77_OM,3656
|
905
904
|
tomwer/tests/test_ewoks/test_single_node_execution.py,sha256=YBUHfiAnkciv_kjj7biC5fOs7c7ofNImM_azGMn4LZM,2813
|
906
905
|
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.
|
906
|
+
tomwer-1.4.7.dist-info/LICENSE,sha256=62p1wL0n9WMTu8x2YDv0odYgTqeSvTd9mQ0v6Mq7lzE,1876
|
907
|
+
tomwer-1.4.7.dist-info/METADATA,sha256=cTWcuTnfLh2DnmMNzen6jZRoBgRDp3VRqOv9U08BI80,13415
|
908
|
+
tomwer-1.4.7.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
909
|
+
tomwer-1.4.7.dist-info/entry_points.txt,sha256=py3ZUWvGnWGc5c7Yhw_uBTm8Fmew0BDw3aQZnWMBNZI,500
|
910
|
+
tomwer-1.4.7.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
|
911
|
+
tomwer-1.4.7.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>
|
File without changes
|
File without changes
|
File without changes
|