tomwer 1.4.0rc0__tar.gz → 1.4.0rc2__tar.gz
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.
- {tomwer-1.4.0rc0/src/tomwer.egg-info → tomwer-1.4.0rc2}/PKG-INFO +2 -2
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/setup.cfg +1 -1
- tomwer-1.4.0rc2/src/orangecontrib/tomwer/tutorials/test_cor.ows +19 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +6 -14
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +4 -2
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/axis.py +0 -3
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/multipag.py +11 -3
- tomwer-1.4.0rc2/src/tomwer/core/process/reconstruction/axis/axis.py +472 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/axis/mode.py +86 -24
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/axis/params.py +127 -138
- tomwer-1.4.0rc2/src/tomwer/core/process/reconstruction/axis/side.py +8 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/nabu/nabuscores.py +17 -20
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/nabu/nabuslices.py +5 -1
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/saaxis/saaxis.py +4 -4
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +4 -4
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/tests/test_axis.py +1 -1
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/tests/test_utils.py +4 -4
- tomwer-1.4.0rc2/src/tomwer/core/process/reconstruction/utils/cor.py +16 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/tests/test_nabu.py +1 -3
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/scan/nxtomoscan.py +2 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/scan/scanbase.py +4 -4
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/scan/tests/test_process_registration.py +0 -18
- tomwer-1.4.0rc2/src/tomwer/gui/fonts.py +5 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/axis/AxisMainWindow.py +20 -9
- tomwer-1.4.0rc2/src/tomwer/gui/reconstruction/axis/AxisOptionsWidget.py +313 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/axis/AxisSettingsWidget.py +38 -17
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/axis/AxisWidget.py +16 -8
- tomwer-1.4.0rc2/src/tomwer/gui/reconstruction/axis/CalculationWidget.py +214 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/axis/ControlWidget.py +10 -2
- tomwer-1.4.0rc2/src/tomwer/gui/reconstruction/axis/EstimatedCORWidget.py +394 -0
- tomwer-1.4.0rc2/src/tomwer/gui/reconstruction/axis/EstimatedCorComboBox.py +118 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/axis/InputWidget.py +11 -155
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/saaxis/corrangeselector.py +19 -10
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/scores/scoreplot.py +5 -2
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/tests/test_nabu.py +8 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/z_stitching/fineestimation.py +1 -1
- tomwer-1.4.0rc2/src/tomwer/gui/tests/test_axis_gui.py +43 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/stacks/reconstruction/axis.py +5 -23
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/stacks/reconstruction/dkrefcopy.py +1 -1
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/stacks/reconstruction/nabu.py +2 -2
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/stacks/reconstruction/normalization.py +1 -1
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/stacks/reconstruction/saaxis.py +1 -1
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/stacks/reconstruction/sadeltabeta.py +1 -1
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_axis.py +0 -16
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/test_ewoks/test_single_node_execution.py +1 -1
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/test_ewoks/test_workflows.py +1 -1
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/version.py +1 -1
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2/src/tomwer.egg-info}/PKG-INFO +2 -2
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer.egg-info/SOURCES.txt +4 -1
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer.egg-info/requires.txt +1 -1
- tomwer-1.4.0rc0/src/orangecontrib/tomwer/tutorials/test_cor.ows +0 -19
- tomwer-1.4.0rc0/src/tomwer/core/process/reconstruction/axis/axis.py +0 -1181
- tomwer-1.4.0rc0/src/tomwer/core/process/reconstruction/utils/cor.py +0 -12
- tomwer-1.4.0rc0/src/tomwer/core/process/tests/test_axis.py +0 -231
- tomwer-1.4.0rc0/src/tomwer/gui/reconstruction/axis/AxisOptionsWidget.py +0 -153
- tomwer-1.4.0rc0/src/tomwer/gui/reconstruction/axis/CalculationWidget.py +0 -374
- tomwer-1.4.0rc0/src/tomwer/gui/tests/test_axis_gui.py +0 -27
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/LICENSE +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/MANIFEST.in +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/README.rst +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/pyproject.toml +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/setup.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/orange/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/orange/managedprocess.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/orange/settings.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/state_summary.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tests/TestAcquisition.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/EBS_tomo_listener.ows +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/append_raw_darks_and_flats_frames_to_NXtomos.ows +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/cast_volume.ows +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/copy_reduced_darks_and_flats_meth1.ows +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/copy_reduced_darks_and_flats_meth2.ows +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/default_cor_search.ows +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/drac_publication.ows +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/hello_world_python_script.ows +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/id16b/ID16b_full_volume.ows +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/id16b/ID16b_insitu.ows +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/id16b/ID16b_normalization.ows +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/id16b/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/simple_slice_reconstruction.ows +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/simple_slice_reconstruction_on_slurm.ows +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/using_saaxis_to_find_cor.ows +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/tutorials/volume_casting_on_slurm.ows +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/cluster/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/cluster/icons/slurm.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/cluster/icons/slurm.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/cluster/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/AdvancementOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/DataListenerOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/DataSelectorOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/DataTransfertOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/DataValidatorOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/DataWatcherOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/EmailOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/FilterOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/NXTomomillOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/NXtomoConcatenate.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/NotifierOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/ReduceDarkFlatSelectorOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/TimerOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/TomoObjSeriesOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/VolumeSelector.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/advancement.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/advancement.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/concatenate_nxtomos.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/concatenate_nxtomos.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/datadiscover.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/datadiscover.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/datalistener.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/datalistener.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/datawatcher.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/edf2nx.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/edf2nx.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/email.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/email.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/esrf.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/folder-transfert.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/image_key_upgrader.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/namefilter.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/namefilter.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/notification.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/notification.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/nxtomomill.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/nxtomomill.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/progress.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/reduced_darkflat_selector.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/reduced_darkflat_selector.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/scanlist.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/scanselector.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/scanselector.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/time.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/tomoobjseries.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/tomoobjseries.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/tomwer.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/validator.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/validatorcrack.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/volumeselector.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/volumeselector.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/volumesymlink.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/icons/volumesymlink.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/control/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/dataportal/PublishProcessedDataOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/dataportal/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/dataportal/icons/publish_processed_data.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/dataportal/icons/publish_processed_data.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/debugtools/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/debugtools/icons/hammer.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/debugtools/icons/hammer.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/debugtools/icons/inspector.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/debugtools/icons/inspector.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/debugtools/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/edit/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/edit/icons/image_key_editor.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/edit/icons/image_key_editor.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/edit/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer_build.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer_build.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer_cluster.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer_cluster.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer_control.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer_control.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer_data_portal.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer_data_portal.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer_debug_tools.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer_debug_tools.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer_edit.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer_edit.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer_other.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer_other.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer_stitching.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer_stitching.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer_visu.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/icons/tomwer_visu.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/other/PythonScriptOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/other/TomoObjsHub.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/other/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/other/icons/PythonScript.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/other/icons/hub.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/other/icons/hub.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/other/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/NabuHelicalPrepareWeightsDoubleOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/axis.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/axis.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/bricks.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/darkref.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/darkref.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/esrf.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_prepare_weights_double.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_prepare_weights_double.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/norm_I.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/norm_I.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/refCopy.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/refCopy.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/saaxis.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/saaxis.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/tomogui.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/icons/tomwer.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/stitching/StitcherOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/stitching/ZStitchingConfigOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/stitching/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/stitching/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/utils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/RadioStackOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/SliceStackOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/icons/diff.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/icons/diff.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/icons/esrf.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/icons/eye.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/icons/eyecrack.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/icons/radiosstack.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/icons/radiosstack.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/icons/sinogramviewer.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/icons/slicesstack.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/icons/slicesstack.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/icons/tomwer.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/visualization/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/__main__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/canvas.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/canvas_launcher/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/canvas_launcher/config.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/canvas_launcher/environ.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/canvas_launcher/mainwindow.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/canvas_launcher/splash.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/canvas_launcher/utils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/canvas_launcher/widgetsscheme.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/darkref.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/darkrefpatch.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/diffframe.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/imagekeyeditor.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/imagekeyupgrader.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/intensitynormalization.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/multicor.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/nabuapp.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/nxtomoeditor.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/patchrawdarkflat.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/radiostack.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/reducedarkflat.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/rsync.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/samplemoved.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/scanviewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/sinogramviewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/slicestack.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/stitching/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/stitching/common.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/stopdatalistener.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/ystitching.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/app/zstitching.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/cluster/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/cluster/cluster.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/futureobject.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/log/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/log/processlog.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/cluster/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/cluster/supervisor.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/conditions/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/conditions/filters.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/datadiscovery.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/datalistener/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/datalistener/datalistener.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/datalistener/rpcserver.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/datawatcher/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/datawatcher/datawatcher.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/datawatcher/datawatcherobserver.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/datawatcher/datawatcherprocess.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/datawatcher/edfdwprocess.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/datawatcher/hdf5dwprocess.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/datawatcher/status.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/emailnotifier.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/nxtomoconcatenate.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/nxtomomill.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/scanlist.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/scanselector.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/scantransfer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/scanvalidator.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/singletomoobj.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/tests/test_concatenate_nxtomos.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/tests/test_email.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/tests/test_h52nx_process.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/timer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/tomoobjseries.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/control/volumeselector.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/drac/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/drac/binning.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/drac/dracbase.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/drac/gallery.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/drac/output.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/drac/processeddataset.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/drac/publish.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/drac/rawdataset.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/drac/tests/test_gallery.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/drac/tests/test_icat_processed_dataset.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/drac/tests/test_icat_raw_dataset.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/edit/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/edit/darkflatpatch.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/edit/imagekeyeditor.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/edit/nxtomoeditor.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/edit/tests/test_darkflatpatch.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/edit/tests/test_imagekey_editor.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/output.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/axis/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/axis/anglemode.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/axis/projectiontype.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/darkref/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/darkref/darkrefs.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/darkref/darkrefscopy.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/darkref/params.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/darkref/settings.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/nabu/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/nabu/castvolume.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/nabu/helical.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/nabu/nabucommon.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/nabu/nabuvolume.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/nabu/plane.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/nabu/settings.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/nabu/target.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/nabu/test/test_castvolume.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/nabu/test/test_nabu_utils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/nabu/test/test_nabunormalization.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/nabu/utils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/normalization/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/normalization/normalization.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/normalization/params.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/output.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/paramsbase.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/saaxis/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/saaxis/params.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/sadeltabeta/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/sadeltabeta/params.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/scores/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/scores/params.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/scores/scores.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/tests/test_axis_params.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/tests/test_darkref.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/tests/test_darkref_copy.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/tests/test_paramsbase.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/tests/test_saaxis.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/tests/test_sadeltabeta.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/reconstruction/utils/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/script/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/script/python.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/script/tests/test_script.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/stitching/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/stitching/metadataholder.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/stitching/nabustitcher.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/stitching/tests/test_metadataholder.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/task.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/tests/test_conditions.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/tests/test_dark_and_flat.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/tests/test_data_listener.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/tests/test_data_transfer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/tests/test_data_watcher.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/tests/test_normalization.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/tests/test_timer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/utils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/visualization/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/visualization/dataviewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/visualization/diffviewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/visualization/imagestackviewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/visualization/radiostack.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/visualization/samplemoved.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/visualization/sinogramviewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/visualization/slicestack.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/visualization/tests/test_data_viewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/visualization/tests/test_diff_viewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/visualization/tests/test_image_stack_viewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/visualization/tests/test_radio_stack.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/visualization/tests/test_sample_moved.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/visualization/tests/test_sinogram_viewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/visualization/tests/test_slice_stack.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/visualization/tests/test_volume_viewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/process/visualization/volumeviewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/scan/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/scan/blissscan.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/scan/edfscan.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/scan/futurescan.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/scan/hdf5scan.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/scan/helicalmetadata.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/scan/scanfactory.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/scan/scantype.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/scan/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/scan/tests/test_edf.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/scan/tests/test_future_scan.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/scan/tests/test_nxtomoscan.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/scan/tests/test_scan.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/settings.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/signal.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/tests/test_scanutils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/tests/test_utils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/tomwer_object.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/Singleton.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/char.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/deprecation.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/dictutils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/ftseriesutils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/gpu.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/image.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/lbsram.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/locker.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/logconfig.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/normalization.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/nxtomoutils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/resource.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/scanutils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/slurm.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/spec.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/tests/test_image.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/tests/test_nxtomo.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/tests/test_scan_utils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/tests/test_time.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/threads.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/time.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/utils/volumeutils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/volume/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/volume/edfvolume.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/volume/hdf5volume.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/volume/jp2kvolume.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/volume/rawvolume.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/volume/tests/test_volumes.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/volume/tiffvolume.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/volume/volumebase.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/core/volume/volumefactory.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/cluster/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/cluster/slurm.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/cluster/supervisor.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/cluster/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/cluster/tests/test_cluster.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/cluster/tests/test_supervisor.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/conditions/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/conditions/filter.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/configuration/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/configuration/action.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/configuration/level.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/actions.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/datadiscovery.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/datalist.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/datalistener.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/datareacheractions.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/datatransfert.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/datavalidator.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/datawatcher/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/datawatcher/configuration.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/datawatcher/controlwidget.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/datawatcher/datawatcher.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/datawatcher/datawatcherobserver.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/history.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/nxtomomill.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/observations.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/reducedarkflatselector.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/scanselectorwidget.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/selectorwidgetbase.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/series/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/series/nxtomoconcatenate.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/series/seriescreator.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/series/serieswaiter.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/series/test/test_creator.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/series/test/test_nxtomo_concatenate.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/singletomoobj.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/tests/test_datadiscovery.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/tests/test_datalist.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/tests/test_datalistener.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/tests/test_datavalidator.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/tests/test_inputwidget.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/tests/test_process_manager.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/tests/test_reducedarkflat_selector.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/tests/test_scan_observations.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/tests/test_scanselector.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/tests/test_scanvalidator.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/tests/test_single_tomo_obj.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/tests/test_volume_dialog.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/tests/test_volumeselector.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/tomoobjdisplaymode.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/control/volumeselectorwidget.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/dataportal/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/dataportal/createscreenshots.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/dataportal/gallery.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/dataportal/outputformat.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/dataportal/publish.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/dataportal/tests/test_create_screenshots_gui.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/dataportal/tests/test_gallery_gui.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/debugtools/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/debugtools/datasetgenerator.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/debugtools/objectinspector.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/dialog/QDataDialog.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/dialog/QVolumeDialog.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/dialog/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/edit/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/edit/dkrfpatch.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/edit/imagekeyeditor.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/edit/nxtomoeditor.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/edit/nxtomowarmer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/edit/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/edit/tests/test_dkrf_patch.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/edit/tests/test_image_key_editor.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/edit/tests/test_nx_editor.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/icons.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/illustrations.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/imagefromfile.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/metadataloader.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/qconfigfile.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/qlefilesystem.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/axis/CompareImages.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/axis/ManualFramesSelection.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/axis/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/darkref/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/darkref/darkrefcopywidget.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/darkref/darkrefwidget.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/castvolume.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/check.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/helical.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/nabuconfig/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/nabuconfig/base.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/nabuconfig/output.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/nabuflow.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/platform.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/slices.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/slurm.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/test/test_cast_volume.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/test/test_check.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/test/test_ctf.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/test/test_helical.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/test/test_nabu_preprocessing.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/nabu/volume.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/normalization/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/normalization/intensity.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/normalization/test/test_intensity.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/saaxis/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/saaxis/dimensionwidget.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/saaxis/saaxis.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/saaxis/sliceselector.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/sadeltabeta/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/scores/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/scores/control.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/tests/test_axis.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/tests/test_saaxis.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/reconstruction/tests/test_sadeltabeta.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/samplemoved/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/samplemoved/selectiontable.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/settings.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stackplot.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stacks.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/SingleAxisStitchingWidget.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/StitchingOptionsWidget.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/StitchingWindow.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/action.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/alignment.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/axisorderedlist.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/config/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/config/axisparams.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/config/output.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/config/positionoveraxis.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/config/stitchingstrategies.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/config/tests/test_axisparams.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/config/tomoobjdetails.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/metadataholder.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/normalization.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/preview.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/singleaxis.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/stitchandbackground.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/stitching_preview.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/stitching_raw.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/tests/test_ZStitchingWindow.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/tests/test_axis_ordered_list.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/tests/test_normalization.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/tests/test_preview.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/tests/test_stitching_raw.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/tests/utils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/utils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/z_stitching/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/z_stitching/tests/test_fine_estimation.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/z_stitching/tests/test_raw_estimation.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/stitching/z_stitching/tests/test_stitching_window.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/tests/test_qfolder_dialog.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/RangeWidget.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/buttons.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/completer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/flow.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/gpu.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/illustrations.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/inputwidget.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/lineselector/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/lineselector/lineselector.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/loadingmode.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/qt_utils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/sandboxes.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/scandescription.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/scrollarea.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/slider.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/splashscreen.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/step.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/tests/test_completer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/tests/test_line_selector.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/tests/test_splashscreen.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/tests/test_vignettes.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/unitsystem.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/utils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/vignettes.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/utils/waiterthread.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/dataviewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/diffviewer/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/diffviewer/diffviewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/diffviewer/shiftwidget.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/fullscreenplot.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/imagestack.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/nxtomometadata.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/reconstructionparameters.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/scanoverview.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/sinogramviewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/test/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/test/test_dataviewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/test/test_diffviewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/test/test_reconstruction_parameters.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/test/test_sinogramviewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/test/test_stacks.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/test/test_volumeviewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/tomoobjoverview.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/volumeoverview.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/gui/visualization/volumeviewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/io/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/io/utils/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/io/utils/h5pyutils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/io/utils/raw_and_processed_data.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/io/utils/test/test_raw_and_processed_data.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/io/utils/test/test_utils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/io/utils/tomoobj.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/io/utils/utils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/Imagej_icon.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/a.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/a.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/add.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/add.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/advanced_user.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/advanced_user.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/axis.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/axis.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/background.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/background.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/basic_user.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/basic_user.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/cfg_file_active.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/cfg_file_active.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/cfg_file_inactive.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/cfg_file_inactive.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/compare_mode_a_minus_b.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/compare_mode_a_minus_b.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/compose.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/compose.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/datalistener_activate.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/datalistener_activate.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/datalistener_deactivate.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/datalistener_deactivate.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/delta_beta.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/delta_beta.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/edit_downstream.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/edit_upstream.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/exit.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/exit.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/free_edition.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/full_screen.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/full_screen.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/hammer.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/hammer.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/health.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/health.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/high_speed.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/high_speed.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/history.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/hourglass.npy +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/icat_gallery_opts.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/icat_gallery_opts.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/imageNotFound.npy +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/information.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/information.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/input.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/input.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/invisible.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/invisible.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/lineselection.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/lineselection.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/list_selection.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/list_selection.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/locked.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/locked.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/log.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/log.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/loop.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/low_speed.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/low_speed.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/medium_low_speed.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/medium_low_speed.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/minimalistic_user.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/minimalistic_user.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/multi-document-save.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/multi-document-save.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/nabu.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/nabu.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/output.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/output.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/parameters.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/parameters.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/plot-xleft.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/plot-xleft.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/plot-xright.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/plot-xright.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/range_selection.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/range_selection.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/results.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/results.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/rm.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/rm.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/roman_four.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/roman_four.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/roman_one.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/roman_one.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/roman_three.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/roman_three.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/roman_two.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/roman_two.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/ruler.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/ruler.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/search.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/search.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/short_description.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/short_description.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/single_selection.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/single_selection.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/sinogram.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/slurm.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/slurm_active.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/slurm_active.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/slurm_deactive.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/slurm_deactive.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/stitching_modeRaw.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/stitching_modeRaw.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/stitching_modeRefine.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/stitching_modeRefine.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/switch.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/tomwer.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/tomwer_large.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/unlocked.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/unlocked.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/unsharp_mask.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/update_stitching_preview.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/url.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/url.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/vignettes.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/vignettes.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/visible.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/visible.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/warning.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/icons/warning.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/illustrations/ctf_z1.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/illustrations/ctf_z1.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/illustrations/flow_down.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/illustrations/flow_down.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/illustrations/flow_right.png +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/illustrations/flow_right.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/resources/gui/illustrations/no_rot.svg +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/axis.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/darkref.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/datalistener.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/datatransfert.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/imageloaderthread.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/rsyncmanager.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/saaxis.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/sadeltabeta.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/stacks/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/stacks/control/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/stacks/control/datalistener.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/stacks/processingstack.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/stacks/reconstruction/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/stacks/reconstruction/castvolume.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/tests/test_darkRefs.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/tests/test_foldertransfer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/utils/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/synctools/utils/scanstages.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/__init__.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/app/test_stitching.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/conftest.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/datasets.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/cluster/tests/test_future_supervisorow.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/cluster/tests/test_slurm_clusterow.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_advancement.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_data_validator.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_datadiscovery.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_datalistener.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_dataselector.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_datawatcher.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_emailow.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_notifier.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_nxtomo_concatenate_ow.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_nxtomomill.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_reduce_dark_flat_selector.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_singletomoobj.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_timerow.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_tomoobj_series.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_volume_selector.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/debugtools/tests/test_dataset_generator.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/debugtools/tests/test_object_inspector.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_dark_flat_patch.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_image_key_editor.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_image_key_upgrader.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_nxtomo_editor.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/other/tests/test_pythonscript.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_cast_volumeow.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_dark_refs_widget.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_delta_beta_selector.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_i_norm.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_helical_prepare_weights_double.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_volume.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_widget.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_sa_delta_beta.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_saaxis.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/stitching/tests/test_zstitching.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/tests/test_conditions.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/tests/test_darkref.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/tests/test_foldertransfert.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_dataviewerow.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_diffviewerow.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_nxtomo_metadata_viewer.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_radio_stackow.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_sample_movedow.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_sinogram_viewerow.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_slice_stackow.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_volume_viewerow.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/test_ewoks/test_conversion.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/test_scripts.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/test_utils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/tests/utils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer/utils.py +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer.egg-info/dependency_links.txt +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer.egg-info/entry_points.txt +0 -0
- {tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/tomwer.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tomwer
|
3
|
-
Version: 1.4.
|
3
|
+
Version: 1.4.0rc2
|
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
|
@@ -28,7 +28,7 @@ Requires-Dist: silx[full]>=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
|
-
Requires-Dist: processview>=1.3
|
31
|
+
Requires-Dist: processview>=1.4.3
|
32
32
|
Requires-Dist: ewoks>=0.1.1
|
33
33
|
Requires-Dist: sluurp>=0.4.0
|
34
34
|
Requires-Dist: packaging
|
@@ -0,0 +1,19 @@
|
|
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>
|
{tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/AxisOW.py
RENAMED
@@ -141,16 +141,6 @@ class AxisOW(SuperviseOW, WidgetLongProcessing):
|
|
141
141
|
|
142
142
|
self._layout.addWidget(self._widget)
|
143
143
|
|
144
|
-
# expose API
|
145
|
-
self.setMode = self._widget.setMode
|
146
|
-
self.getMode = self._widget.getMode
|
147
|
-
self.getEstimatedCor = self._widget.getEstimatedCor
|
148
|
-
self.setEstimatedCor = self._widget.setEstimatedCor
|
149
|
-
self.getAxisParams = self._widget.getAxisParams
|
150
|
-
self.setValueLock = self._widget.setValueLock
|
151
|
-
self._setModeLockFrmSettings = self._widget._setModeLockFrmSettings
|
152
|
-
self._setValueLockFrmSettings = self._widget._setValueLockFrmSettings
|
153
|
-
|
154
144
|
# load settings
|
155
145
|
try:
|
156
146
|
if "mode_is_lock" in gui_settings:
|
@@ -170,6 +160,7 @@ class AxisOW(SuperviseOW, WidgetLongProcessing):
|
|
170
160
|
"auto_update_estimated_cor", True
|
171
161
|
)
|
172
162
|
self._widget.setAutoUpdateEstimatedCor(auto_update_estimated_cor)
|
163
|
+
self._widget.setYAxisInverted(gui_settings.get("y_axis_inverted", False))
|
173
164
|
|
174
165
|
except Exception as e:
|
175
166
|
logger.warning(f"Fail to load settings. Error is {str(e)}")
|
@@ -184,11 +175,14 @@ class AxisOW(SuperviseOW, WidgetLongProcessing):
|
|
184
175
|
self._processingStack.sigComputationEnded.connect(self._scanProcessed)
|
185
176
|
|
186
177
|
self._axis_params.sigChanged.connect(self._updateSettingsVals)
|
178
|
+
self._widget._axisWidget._settingsWidget._mainWidget._calculationWidget.sigUpdateXRotAxisPixelPosOnNewScan.connect(
|
179
|
+
self._updateSettingsVals
|
180
|
+
)
|
187
181
|
self._widget.sigAxisEditionLocked.connect(self._updateSettingsVals)
|
188
182
|
self._widget.sigModeChanged.connect(self._updateSettingsVals)
|
189
183
|
self._widget.sigLockModeChanged.connect(self._updateSettingsVals)
|
190
184
|
|
191
|
-
self._widget._axisWidget._settingsWidget._mainWidget._calculationWidget.
|
185
|
+
self._widget._axisWidget._settingsWidget._mainWidget._calculationWidget._estimatedCorWidget.sigValueChanged.connect(
|
192
186
|
self._updateSettingsVals
|
193
187
|
)
|
194
188
|
|
@@ -353,6 +347,7 @@ class AxisOW(SuperviseOW, WidgetLongProcessing):
|
|
353
347
|
"mode_is_lock": self.isModeLocked(),
|
354
348
|
"value_is_lock": self.isValueLock(),
|
355
349
|
"auto_update_estimated_cor": self._widget.getAutoUpdateEstimatedCor(),
|
350
|
+
"y_axis_inverted": self._widget.isYAxisInverted(),
|
356
351
|
},
|
357
352
|
}
|
358
353
|
|
@@ -458,9 +453,6 @@ class AxisOW(SuperviseOW, WidgetLongProcessing):
|
|
458
453
|
"serialize_output_data": False,
|
459
454
|
}
|
460
455
|
)
|
461
|
-
for patch in self._patches:
|
462
|
-
mode, function = patch
|
463
|
-
processing_class._CALCULATIONS_METHODS[mode] = function
|
464
456
|
processing_class.run()
|
465
457
|
self._updatePosition(scan=self.__scan)
|
466
458
|
if self.isModeLocked() or self.isValueLock():
|
{tomwer-1.4.0rc0 → tomwer-1.4.0rc2}/src/orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py
RENAMED
@@ -312,8 +312,10 @@ class NabuVolumeOW(WidgetLongProcessing, SuperviseOW):
|
|
312
312
|
)
|
313
313
|
drac_processed_datasets.append(icatReconstructedDataset)
|
314
314
|
|
315
|
-
|
316
|
-
|
315
|
+
if len(drac_processed_datasets) > 0:
|
316
|
+
self.Outputs.data_portal_processed_datasets.send(
|
317
|
+
drac_processed_datasets
|
318
|
+
)
|
317
319
|
|
318
320
|
if future_tomo_obj is not None:
|
319
321
|
self.Outputs.future_out.send(future_tomo_obj)
|
@@ -169,9 +169,6 @@ def main(argv):
|
|
169
169
|
_logger.setLevel(logging.DEBUG)
|
170
170
|
|
171
171
|
axis_params = QAxisRP()
|
172
|
-
axis_params.use_sinogram = options.use_sinogram
|
173
|
-
if scan.dim_2 is not None:
|
174
|
-
axis_params.sinogram_line = scan.dim_2 // 2
|
175
172
|
|
176
173
|
window = _AxisProcessGUI(scan=scan, axis_params=axis_params)
|
177
174
|
window.setWindowTitle("axis")
|
@@ -23,6 +23,10 @@ from tomwer.core.process.reconstruction.darkref.darkrefs import (
|
|
23
23
|
from tomwer.core.process.reconstruction.sadeltabeta.sadeltabeta import (
|
24
24
|
SADeltaBetaTask,
|
25
25
|
)
|
26
|
+
from tomwer.core.process.reconstruction.utils.cor import (
|
27
|
+
relative_pos_to_absolute,
|
28
|
+
absolute_pos_to_relative,
|
29
|
+
)
|
26
30
|
from tomwer.core.process.task import Task
|
27
31
|
from tomwer.core.scan.scanfactory import ScanFactory
|
28
32
|
from tomwer.core.utils.resource import increase_max_number_file
|
@@ -136,13 +140,17 @@ class SADeltaBetaWindow(_SADeltaBetaWindow):
|
|
136
140
|
|
137
141
|
def _relativeValueEdited(self):
|
138
142
|
old = self._absoluteCORValueQLE.blockSignals(True)
|
139
|
-
value =
|
143
|
+
value = relative_pos_to_absolute(
|
144
|
+
relative_pos=self._relativeCORValueQLE.value(), det_width=self._imageWidth
|
145
|
+
)
|
140
146
|
self._absoluteCORValueQLE.setValue(value)
|
141
147
|
self._absoluteCORValueQLE.blockSignals(old)
|
142
148
|
|
143
|
-
def
|
149
|
+
def _absoluteValueEdited(self):
|
144
150
|
old = self._relativeCORValueQLE.blockSignals(True)
|
145
|
-
value =
|
151
|
+
value = absolute_pos_to_relative(
|
152
|
+
absolute_pos=self._absoluteCORValueQLE.value(), det_width=self._imageWidth
|
153
|
+
)
|
146
154
|
self._relativeCORValueQLE.setValue(value)
|
147
155
|
self._relativeCORValueQLE.blockSignals(old)
|
148
156
|
|
@@ -0,0 +1,472 @@
|
|
1
|
+
"""contain the AxisTask class
|
2
|
+
"""
|
3
|
+
|
4
|
+
from __future__ import annotations
|
5
|
+
|
6
|
+
import logging
|
7
|
+
|
8
|
+
from nabu.pipeline.estimators import estimate_cor
|
9
|
+
from nabu.resources.nxflatfield import update_dataset_info_flats_darks
|
10
|
+
from processview.core.manager import DatasetState, ProcessManager
|
11
|
+
from processview.core.superviseprocess import SuperviseProcess
|
12
|
+
|
13
|
+
import tomwer.version
|
14
|
+
from tomwer.core.process.reconstruction.utils.cor import absolute_pos_to_relative
|
15
|
+
from tomwer.core.process.task import Task
|
16
|
+
from tomwer.core.scan.nxtomoscan import NXtomoScan
|
17
|
+
from tomwer.core.scan.edfscan import EDFTomoScan
|
18
|
+
from tomwer.core.scan.scanbase import TomwerScanBase
|
19
|
+
from tomwer.core.scan.scanfactory import ScanFactory
|
20
|
+
from tomwer.core.utils import image, logconfig
|
21
|
+
from tomwer.core.utils.scanutils import data_identifier_to_scan
|
22
|
+
from tomwer.utils import docstring
|
23
|
+
|
24
|
+
from .mode import AxisMode
|
25
|
+
from .params import (
|
26
|
+
DEFAULT_CMP_N_SUBSAMPLING_Y,
|
27
|
+
DEFAULT_CMP_NEAR_POS,
|
28
|
+
DEFAULT_CMP_NEAR_WIDTH,
|
29
|
+
DEFAULT_CMP_OVERSAMPLING,
|
30
|
+
DEFAULT_CMP_TAKE_LOG,
|
31
|
+
DEFAULT_CMP_THETA,
|
32
|
+
AxisRP,
|
33
|
+
)
|
34
|
+
from .projectiontype import ProjectionType
|
35
|
+
|
36
|
+
_logger = logging.getLogger(__name__)
|
37
|
+
|
38
|
+
# vertically, work on a window having only a percentage of the frame.
|
39
|
+
pc_height = 10.0 / 100.0
|
40
|
+
# horizontally. Global method supposes the COR is more or less in center
|
41
|
+
# % of the detector:
|
42
|
+
|
43
|
+
pc_width = 50.0 / 100.0
|
44
|
+
|
45
|
+
|
46
|
+
def _absolute_pos_to_relative_with_warning(absolute_pos: float, det_width: int | None):
|
47
|
+
"""
|
48
|
+
nabu returns the value as absolute. tomwer needs it as relative
|
49
|
+
Also handle the case (unlikely) the detector width cannot be found
|
50
|
+
"""
|
51
|
+
if det_width is None:
|
52
|
+
det_width = 2048
|
53
|
+
_logger.warning("unable to find image width. Set width to 2048")
|
54
|
+
else:
|
55
|
+
det_width = det_width
|
56
|
+
return absolute_pos_to_relative(absolute_pos=absolute_pos, det_width=det_width)
|
57
|
+
|
58
|
+
|
59
|
+
def adapt_tomwer_scan_to_nabu(scan: TomwerScanBase):
|
60
|
+
"""simple util to convert tomwer scan to a nabu DataAnalizer and
|
61
|
+
updating infos regarding flat and dark if needed
|
62
|
+
"""
|
63
|
+
dataset_infos = scan.to_nabu_dataset_analyser()
|
64
|
+
if isinstance(scan, NXtomoScan):
|
65
|
+
try:
|
66
|
+
update_dataset_info_flats_darks(
|
67
|
+
dataset_infos,
|
68
|
+
flatfield_mode=None,
|
69
|
+
)
|
70
|
+
except ValueError as exception:
|
71
|
+
# nabu raise an error if no darks / flats set. But this can make sense at this stage if the NXtomo has no
|
72
|
+
# raw dark / flat and is already normalized. In this case only fire a warning
|
73
|
+
if (
|
74
|
+
scan.reduced_darks is not None
|
75
|
+
and len(scan.reduced_darks) > 0
|
76
|
+
and scan.reduced_flats is not None
|
77
|
+
and len(scan.reduced_flats) > 0
|
78
|
+
):
|
79
|
+
raise exception
|
80
|
+
else:
|
81
|
+
_logger.warning(
|
82
|
+
"Fail to update nabu dataset info flats and darks. Expected if the dataset contains already normalized projections"
|
83
|
+
)
|
84
|
+
|
85
|
+
return dataset_infos
|
86
|
+
|
87
|
+
|
88
|
+
def get_composite_options(scan) -> tuple:
|
89
|
+
theta = scan.axis_params.composite_options.get("theta", DEFAULT_CMP_THETA)
|
90
|
+
n_subsampling_y = scan.axis_params.composite_options.get(
|
91
|
+
"n_subsampling_y", DEFAULT_CMP_N_SUBSAMPLING_Y
|
92
|
+
)
|
93
|
+
oversampling = scan.axis_params.composite_options.get(
|
94
|
+
"oversampling", DEFAULT_CMP_OVERSAMPLING
|
95
|
+
)
|
96
|
+
take_log = scan.axis_params.composite_options.get("take_log", DEFAULT_CMP_TAKE_LOG)
|
97
|
+
|
98
|
+
near_pos = scan.axis_params.composite_options.get("near_pos", DEFAULT_CMP_NEAR_POS)
|
99
|
+
near_width = scan.axis_params.composite_options.get(
|
100
|
+
"near_width", DEFAULT_CMP_NEAR_WIDTH
|
101
|
+
)
|
102
|
+
return theta, n_subsampling_y, oversampling, take_log, near_pos, near_width
|
103
|
+
|
104
|
+
|
105
|
+
def read_scan_x_rotation_axis_pixel_position(scan: TomwerScanBase):
|
106
|
+
"""read center of rotation estimation from metadata"""
|
107
|
+
if isinstance(scan, EDFTomoScan):
|
108
|
+
raise TypeError("EDFTomoScan have not information about estimated cor position")
|
109
|
+
else:
|
110
|
+
res = scan.x_rotation_axis_pixel_position
|
111
|
+
if res is None:
|
112
|
+
_logger.error(
|
113
|
+
f"unable to find x_rotation_axis_pixel_position from {scan.get_identifier()}"
|
114
|
+
)
|
115
|
+
return res
|
116
|
+
|
117
|
+
|
118
|
+
class NoAxisUrl(Exception):
|
119
|
+
pass
|
120
|
+
|
121
|
+
|
122
|
+
class AxisTask(
|
123
|
+
Task,
|
124
|
+
SuperviseProcess,
|
125
|
+
input_names=("data",),
|
126
|
+
output_names=("data",),
|
127
|
+
optional_input_names=("serialize_output_data",),
|
128
|
+
):
|
129
|
+
"""
|
130
|
+
Process used to compute the center of rotation of a scan
|
131
|
+
"""
|
132
|
+
|
133
|
+
def __init__(
|
134
|
+
self,
|
135
|
+
process_id=None,
|
136
|
+
varinfo=None,
|
137
|
+
inputs=None,
|
138
|
+
node_id=None,
|
139
|
+
node_attrs=None,
|
140
|
+
execinfo=None,
|
141
|
+
):
|
142
|
+
Task.__init__(
|
143
|
+
self,
|
144
|
+
varinfo=varinfo,
|
145
|
+
inputs=inputs,
|
146
|
+
node_id=node_id,
|
147
|
+
node_attrs=node_attrs,
|
148
|
+
execinfo=execinfo,
|
149
|
+
)
|
150
|
+
if "recons_params" in inputs:
|
151
|
+
raise KeyError("do not use 'recons_params' but use 'axis_params' instead")
|
152
|
+
axis_params = inputs.get("axis_params", None)
|
153
|
+
if isinstance(axis_params, dict):
|
154
|
+
axis_params = AxisRP.from_dict(axis_params)
|
155
|
+
elif not (axis_params is None or isinstance(axis_params, AxisRP)):
|
156
|
+
raise TypeError(
|
157
|
+
"'axis_params' is expected to be None or an instance of AxisRP or a dict"
|
158
|
+
)
|
159
|
+
|
160
|
+
SuperviseProcess.__init__(self, process_id=process_id)
|
161
|
+
self._mode_calculation_fct = {}
|
162
|
+
"""dict with function pointer to call for making the mode calculation.
|
163
|
+
Function should have only one 'scan' parameter as input"""
|
164
|
+
|
165
|
+
self._axis_params = axis_params or AxisRP()
|
166
|
+
"""Axis reconstruction parameters to apply"""
|
167
|
+
self._locked = False
|
168
|
+
"""Boolean used to lock reconstruction parameters edition"""
|
169
|
+
self._recons_params_before_lock = None
|
170
|
+
"""Recons parameters register before locking the position"""
|
171
|
+
|
172
|
+
def set_configuration(self, configuration):
|
173
|
+
if "_rpSetting" in configuration:
|
174
|
+
recons_params = AxisRP.from_dict(configuration["_rpSetting"])
|
175
|
+
else:
|
176
|
+
recons_params = AxisRP.from_dict(configuration)
|
177
|
+
self.set_recons_params(recons_params=recons_params)
|
178
|
+
|
179
|
+
def set_recons_params(self, recons_params):
|
180
|
+
assert isinstance(recons_params, AxisRP)
|
181
|
+
self._axis_params = recons_params
|
182
|
+
|
183
|
+
def lock_position_value(self, lock=True):
|
184
|
+
"""
|
185
|
+
lock the position currently computed or defined by the user.
|
186
|
+
In this case we will lock the axis as defined 'fixed' with the current
|
187
|
+
value
|
188
|
+
|
189
|
+
:param lock: if true lock the currently existing position value
|
190
|
+
"""
|
191
|
+
self._locked = lock
|
192
|
+
if lock:
|
193
|
+
self._recons_params_before_lock = self._axis_params.to_dict()
|
194
|
+
if self._axis_params != AxisMode.manual:
|
195
|
+
self._axis_params.mode = AxisMode.manual
|
196
|
+
else:
|
197
|
+
if self._recons_params_before_lock:
|
198
|
+
self._axis_params.load_from_dict(
|
199
|
+
self._recons_params_before_lock
|
200
|
+
) # noqa
|
201
|
+
|
202
|
+
def run(self):
|
203
|
+
"""
|
204
|
+
Compute the position value then get ready to the next. And call
|
205
|
+
|
206
|
+
.. note:: this simply call `compute`.
|
207
|
+
But this is needed for the AxisProcessThreaded class
|
208
|
+
"""
|
209
|
+
scan = data_identifier_to_scan(self.inputs.data)
|
210
|
+
if scan is None:
|
211
|
+
self.outputs.data = None
|
212
|
+
return
|
213
|
+
|
214
|
+
if isinstance(scan, TomwerScanBase):
|
215
|
+
scan = scan
|
216
|
+
elif isinstance(scan, dict):
|
217
|
+
scan = ScanFactory.create_scan_object_frm_dict(scan)
|
218
|
+
else:
|
219
|
+
raise ValueError(f"input type {scan} is not managed")
|
220
|
+
|
221
|
+
_logger.info("start axis calculation for %s" % scan.path)
|
222
|
+
self._axis_params.frame_width = scan.dim_1
|
223
|
+
cor = error = None
|
224
|
+
try:
|
225
|
+
scan_res = self.compute(scan=scan)
|
226
|
+
except Exception as e:
|
227
|
+
scan_res = None
|
228
|
+
error = e
|
229
|
+
else:
|
230
|
+
if isinstance(scan_res, TomwerScanBase):
|
231
|
+
cor = scan_res.axis_params.relative_cor_value
|
232
|
+
elif scan_res is None:
|
233
|
+
if scan.axis_params.relative_cor_value is not None:
|
234
|
+
cor = scan.axis_params.relative_cor_value
|
235
|
+
elif isinstance(scan_res, float):
|
236
|
+
cor = scan_res
|
237
|
+
else:
|
238
|
+
assert isinstance(scan_res, dict)
|
239
|
+
b_dict = scan_res
|
240
|
+
if TomwerScanBase._DICT_AXIS_KEYS in scan_res:
|
241
|
+
b_dict = scan_res["axis_params"]
|
242
|
+
cor = b_dict["POSITION_VALUE"]
|
243
|
+
finally:
|
244
|
+
if cor != "...":
|
245
|
+
self._process_end(scan, cor=cor, error=error)
|
246
|
+
|
247
|
+
if self.get_input_value("serialize_output_data", True):
|
248
|
+
self.outputs.data = scan_res.to_dict()
|
249
|
+
else:
|
250
|
+
self.outputs.data = scan_res
|
251
|
+
|
252
|
+
def _process_end(self, scan, cor, error=None):
|
253
|
+
assert isinstance(scan, TomwerScanBase)
|
254
|
+
if scan.process_file is not None:
|
255
|
+
entry = "entry"
|
256
|
+
if isinstance(scan, NXtomoScan):
|
257
|
+
entry = scan.entry
|
258
|
+
self.register_process(
|
259
|
+
process_file=scan.process_file,
|
260
|
+
entry=entry,
|
261
|
+
results={"center_of_rotation": cor if cor is not None else "-"},
|
262
|
+
configuration=self._axis_params.to_dict(),
|
263
|
+
process_index=scan.pop_process_index(),
|
264
|
+
overwrite=True,
|
265
|
+
)
|
266
|
+
|
267
|
+
try:
|
268
|
+
extra = {
|
269
|
+
logconfig.DOC_TITLE: self._scheme_title,
|
270
|
+
logconfig.SCAN_ID: scan.path,
|
271
|
+
}
|
272
|
+
if error is not None:
|
273
|
+
info = " ".join(
|
274
|
+
(
|
275
|
+
"fail to compute axis position for scan",
|
276
|
+
str(scan.path),
|
277
|
+
"reason is ",
|
278
|
+
str(error),
|
279
|
+
)
|
280
|
+
)
|
281
|
+
_logger.processFailed(info, extra=extra)
|
282
|
+
ProcessManager().notify_dataset_state(
|
283
|
+
dataset=scan, process=self, state=DatasetState.FAILED, details=info
|
284
|
+
)
|
285
|
+
elif scan.axis_params.relative_cor_value is None:
|
286
|
+
info = " ".join(
|
287
|
+
("fail to compute axis position for scan", str(scan.path))
|
288
|
+
)
|
289
|
+
_logger.processFailed(info, extra=extra)
|
290
|
+
ProcessManager().notify_dataset_state(
|
291
|
+
dataset=scan, process=self, state=DatasetState.FAILED, details=info
|
292
|
+
)
|
293
|
+
else:
|
294
|
+
info = "axis calculation defined for {}: {} (using {})".format(
|
295
|
+
str(scan.path),
|
296
|
+
str(scan.axis_params.relative_cor_value),
|
297
|
+
scan.axis_params.mode.value,
|
298
|
+
)
|
299
|
+
_logger.processSucceed(info, extra=extra)
|
300
|
+
ProcessManager().notify_dataset_state(
|
301
|
+
dataset=scan, process=self, state=DatasetState.SUCCEED, details=info
|
302
|
+
)
|
303
|
+
except Exception as e:
|
304
|
+
_logger.error(e)
|
305
|
+
|
306
|
+
@staticmethod
|
307
|
+
def get_input_radios(scan) -> tuple:
|
308
|
+
"""Make sure we have valid projections to be used for axis calculation
|
309
|
+
|
310
|
+
:param scan: scan to check
|
311
|
+
:raise: NoAxisUrl if fails to found
|
312
|
+
:return: tuple of AxisResource
|
313
|
+
"""
|
314
|
+
if (
|
315
|
+
scan.axis_params
|
316
|
+
and scan.axis_params.axis_url_1
|
317
|
+
and scan.axis_params.axis_url_1.url
|
318
|
+
):
|
319
|
+
return scan.axis_params.axis_url_1, scan.axis_params.axis_url_2
|
320
|
+
|
321
|
+
return scan.get_opposite_projections(mode=scan.axis_params.angle_mode)
|
322
|
+
|
323
|
+
@staticmethod
|
324
|
+
def get_inputs(scan):
|
325
|
+
assert isinstance(scan, TomwerScanBase)
|
326
|
+
radio_1, radio_2 = AxisTask.get_input_radios(scan=scan)
|
327
|
+
if radio_1 and radio_2:
|
328
|
+
mess = " ".join(
|
329
|
+
("input radios are", radio_1.url.path(), "and", radio_2.url.path())
|
330
|
+
)
|
331
|
+
_logger.info(mess)
|
332
|
+
log_ = scan.axis_params.projection_type is ProjectionType.transmission
|
333
|
+
|
334
|
+
# if necessary normalize data
|
335
|
+
if radio_1.normalized_data is None:
|
336
|
+
radio_1.normalize_data(scan, log_=log_)
|
337
|
+
if radio_2.normalized_data is None:
|
338
|
+
radio_2.normalize_data(scan, log_=log_)
|
339
|
+
|
340
|
+
if scan.axis_params.paganin_preproc:
|
341
|
+
data_1 = radio_1.normalized_data_paganin
|
342
|
+
data_2 = radio_2.normalized_data_paganin
|
343
|
+
else:
|
344
|
+
data_1 = radio_1.normalized_data
|
345
|
+
data_2 = radio_2.normalized_data
|
346
|
+
|
347
|
+
if scan.axis_params.scale_img2_to_img1:
|
348
|
+
data_2 = image.scale_img2_to_img1(img_1=data_1, img_2=data_2)
|
349
|
+
return data_1, data_2
|
350
|
+
else:
|
351
|
+
_logger.info("fail to find any inputs")
|
352
|
+
return None, None
|
353
|
+
|
354
|
+
def compute(self, scan, wait=True):
|
355
|
+
"""
|
356
|
+
Compute the position value for the scan
|
357
|
+
|
358
|
+
:param scan:
|
359
|
+
:param wait: used for threaded process. True if we want to end the
|
360
|
+
computation before releasing hand.
|
361
|
+
:return: scan as a TomoBase
|
362
|
+
"""
|
363
|
+
assert scan is not None
|
364
|
+
if isinstance(scan, dict):
|
365
|
+
_logger.warning("convert scan from a dict")
|
366
|
+
_scan = ScanFactory.create_scan_object_frm_dict(scan)
|
367
|
+
else:
|
368
|
+
_scan = scan
|
369
|
+
assert isinstance(_scan, TomwerScanBase)
|
370
|
+
# if the scan has no tomo reconstruction parameters yet create them
|
371
|
+
if _scan.axis_params is None:
|
372
|
+
_scan.axis_params = AxisRP()
|
373
|
+
|
374
|
+
# copy axis recons parameters. We skip the axis_url which are specific
|
375
|
+
# to the scan
|
376
|
+
_scan.axis_params.copy(
|
377
|
+
self._axis_params, copy_axis_url=False, copy_flip_lr=False
|
378
|
+
)
|
379
|
+
assert scan.axis_params is not None
|
380
|
+
return self._process_computation(scan=_scan)
|
381
|
+
|
382
|
+
def scan_ready(self, scan):
|
383
|
+
_logger.info(scan, "processed")
|
384
|
+
|
385
|
+
def _process_computation(self, scan):
|
386
|
+
"""
|
387
|
+
|
388
|
+
:param TomwerScanBase scan: scan for which we want to compute the axis
|
389
|
+
position.
|
390
|
+
:return: scan as a TomoBase or a dict if serialize_output_data activated
|
391
|
+
"""
|
392
|
+
_logger.info("compute center of rotation for %s" % scan.path)
|
393
|
+
try:
|
394
|
+
position = self.compute_axis_position(scan)
|
395
|
+
except NotImplementedError as e:
|
396
|
+
scan.axis_params.set_relative_value(None)
|
397
|
+
raise e
|
398
|
+
except ValueError as e:
|
399
|
+
scan_name = scan.path or "undef scan"
|
400
|
+
scan.axis_params.set_relative_value(None)
|
401
|
+
raise Exception(
|
402
|
+
f"Fail to compute axis position for {scan_name} reason is {e}"
|
403
|
+
)
|
404
|
+
else:
|
405
|
+
scan.axis_params.set_relative_value(position)
|
406
|
+
self._axis_params.frame_width = scan.dim_1
|
407
|
+
self._axis_params.set_relative_value(position)
|
408
|
+
scan_name = scan.path or "undef scan"
|
409
|
+
r_cor_value = scan.axis_params.relative_cor_value
|
410
|
+
mess = f"Compute axis position ({r_cor_value}) with {scan.axis_params.mode.value}"
|
411
|
+
_logger.info(mess)
|
412
|
+
return scan
|
413
|
+
|
414
|
+
def setMode(self, mode, value):
|
415
|
+
if mode is AxisMode.manual:
|
416
|
+
self._axis_params.cor_position = value
|
417
|
+
else:
|
418
|
+
raise NotImplementedError("mode not implemented yet")
|
419
|
+
|
420
|
+
def define_calculation_mode(self, mode: AxisMode, fct_pointer):
|
421
|
+
"""Register the function to call of the given mode
|
422
|
+
|
423
|
+
:param mode: the mode to register
|
424
|
+
:param fct_pointer: pointer to the function to call
|
425
|
+
"""
|
426
|
+
self._mode_calculation_fct[mode] = fct_pointer
|
427
|
+
|
428
|
+
def compute_axis_position(self, scan):
|
429
|
+
"""
|
430
|
+
|
431
|
+
:param scan: scan for which we compute the center of rotation
|
432
|
+
:return: position of the rotation axis. Use the `.AxisMode` defined
|
433
|
+
by the `.ReconsParams` of the `.AxisTask`
|
434
|
+
"""
|
435
|
+
mode = self._axis_params.mode
|
436
|
+
if mode is AxisMode.manual:
|
437
|
+
# If mode is read or manual the position_value is not computed and
|
438
|
+
# we will keep the actual one (should have been defined previously)
|
439
|
+
res = self._axis_params.relative_cor_value
|
440
|
+
elif mode is AxisMode.read:
|
441
|
+
res = read_scan_x_rotation_axis_pixel_position(scan=scan)
|
442
|
+
else:
|
443
|
+
has_darks = scan.reduced_darks is not None and len(scan.reduced_darks) > 0
|
444
|
+
has_flats = scan.reduced_flats is not None and len(scan.reduced_flats) > 0
|
445
|
+
|
446
|
+
res = estimate_cor(
|
447
|
+
method=mode.value,
|
448
|
+
dataset_info=adapt_tomwer_scan_to_nabu(scan=scan),
|
449
|
+
do_flatfield=has_darks and has_flats,
|
450
|
+
cor_options=scan.axis_params.get_nabu_cor_options_as_dict(),
|
451
|
+
)
|
452
|
+
# convert back to relative
|
453
|
+
res = _absolute_pos_to_relative_with_warning(
|
454
|
+
absolute_pos=res, det_width=scan.dim_1
|
455
|
+
)
|
456
|
+
|
457
|
+
return res
|
458
|
+
|
459
|
+
@docstring(Task.program_name)
|
460
|
+
@staticmethod
|
461
|
+
def program_name():
|
462
|
+
return "tomwer_axis"
|
463
|
+
|
464
|
+
@docstring(Task.program_version)
|
465
|
+
@staticmethod
|
466
|
+
def program_version():
|
467
|
+
return tomwer.version.version
|
468
|
+
|
469
|
+
@docstring(Task.definition)
|
470
|
+
@staticmethod
|
471
|
+
def definition():
|
472
|
+
return "Compute center of rotation"
|