tomwer 1.2.0a1__tar.gz → 1.2.0a3__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.2.0a3/PKG-INFO +139 -0
- tomwer-1.2.0a3/README.rst +107 -0
- tomwer-1.2.0a3/orangecontrib/__init__.py +8 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/tutorials/append_raw_darks_and_flats_frames_to_NXtomos.ows +44 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/tutorials/copy_reduced_darks_and_flats_meth1.ows +55 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/tutorials/copy_reduced_darks_and_flats_meth2.ows +48 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/tutorials/default_cor_search.ows +40 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/tutorials/hello_world_python_script.ows +50 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/tutorials/simple_slice_reconstruction_on_slurm.ows +50 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows +59 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/__init__.py +63 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py +243 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py +101 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/AdvancementOW.py +65 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py +230 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/DataListOW.py +127 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/DataListenerOW.py +409 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/DataSelectorOW.py +134 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/DataTransfertOW.py +222 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/DataValidatorOW.py +194 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/DataWatcherOW.py +205 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +235 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/EmailOW.py +82 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/FilterOW.py +128 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/NXTomomillOW.py +312 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/NotifierOW.py +126 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/ReduceDarkFlatSelectorOW.py +93 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +168 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/TimerOW.py +129 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/TomoObjSerieOW.py +86 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/VolumeSelector.py +139 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/VolumeSymLinkOW.py +182 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/icons/email.png +0 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/icons/email.svg +58 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/icons/reduced_darkflat_selector.png +0 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/control/icons/reduced_darkflat_selector.svg +199 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py +176 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py +65 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +182 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py +133 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +126 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +128 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/other/PythonScriptOW.py +815 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/other/TomoObjsHub.py +28 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/other/icons/hub.png +0 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/other/icons/hub.svg +113 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +565 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +233 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py +271 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +307 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +467 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +496 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +420 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +306 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/reconstruction/TofuOW.py +197 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/stitching/StitcherOW.py +81 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/stitching/ZStitchingConfigOW.py +118 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +147 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +79 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/visualization/LivesliceOW.py +87 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py +69 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/visualization/RadioStackOW.py +96 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py +115 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +92 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/visualization/SliceStackOW.py +111 -0
- tomwer-1.2.0a3/orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py +88 -0
- tomwer-1.2.0a3/setup.cfg +155 -0
- tomwer-1.2.0a3/tomwer/__main__.py +312 -0
- tomwer-1.2.0a3/tomwer/app/axis.py +199 -0
- tomwer-1.2.0a3/tomwer/app/canvas_launcher/config.py +206 -0
- tomwer-1.2.0a3/tomwer/app/canvas_launcher/mainwindow.py +539 -0
- tomwer-1.2.0a3/tomwer/app/darkref.py +10 -0
- tomwer-1.2.0a3/tomwer/app/darkrefpatch.py +10 -0
- tomwer-1.2.0a3/tomwer/app/diffframe.py +105 -0
- tomwer-1.2.0a3/tomwer/app/imagekeyeditor.py +97 -0
- tomwer-1.2.0a3/tomwer/app/intensitynormalization.py +208 -0
- tomwer-1.2.0a3/tomwer/app/lamino.py +143 -0
- tomwer-1.2.0a3/tomwer/app/radiostack.py +93 -0
- tomwer-1.2.0a3/tomwer/app/reducedarkflat.py +205 -0
- tomwer-1.2.0a3/tomwer/app/saaxis.py +305 -0
- tomwer-1.2.0a3/tomwer/app/sadeltabeta.py +369 -0
- tomwer-1.2.0a3/tomwer/app/samplemoved.py +91 -0
- tomwer-1.2.0a3/tomwer/app/scanviewer.py +97 -0
- tomwer-1.2.0a3/tomwer/app/sinogramviewer.py +123 -0
- tomwer-1.2.0a3/tomwer/app/slicestack.py +91 -0
- tomwer-1.2.0a3/tomwer/app/zstitching.py +299 -0
- tomwer-1.2.0a3/tomwer/core/futureobject.py +185 -0
- tomwer-1.2.0a3/tomwer/core/process/conditions/filters.py +239 -0
- tomwer-1.2.0a3/tomwer/core/process/control/datadiscovery.py +11 -0
- tomwer-1.2.0a3/tomwer/core/process/control/datawatcher/datawatcher.py +466 -0
- tomwer-1.2.0a3/tomwer/core/process/control/email.py +148 -0
- tomwer-1.2.0a3/tomwer/core/process/control/nxtomoconcatenate.py +127 -0
- tomwer-1.2.0a3/tomwer/core/process/control/nxtomomill.py +179 -0
- tomwer-1.2.0a3/tomwer/core/process/control/scanselector.py +12 -0
- tomwer-1.2.0a3/tomwer/core/process/control/scantransfer.py +719 -0
- tomwer-1.2.0a3/tomwer/core/process/control/test/test_concatenate_nxtomos.py +81 -0
- tomwer-1.2.0a3/tomwer/core/process/control/test/test_email.py +52 -0
- tomwer-1.2.0a3/tomwer/core/process/control/test/test_h52nx_process.py +106 -0
- tomwer-1.2.0a3/tomwer/core/process/control/test/test_volume_link.py +74 -0
- tomwer-1.2.0a3/tomwer/core/process/control/timer.py +105 -0
- tomwer-1.2.0a3/tomwer/core/process/control/tomoobjserie.py +12 -0
- tomwer-1.2.0a3/tomwer/core/process/control/volumeselector.py +14 -0
- tomwer-1.2.0a3/tomwer/core/process/control/volumesymlink.py +200 -0
- tomwer-1.2.0a3/tomwer/core/process/edit/darkflatpatch.py +157 -0
- tomwer-1.2.0a3/tomwer/core/process/edit/imagekeyeditor.py +281 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/axis/__init__.py +2 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/axis/axis.py +1018 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/axis/params.py +942 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/darkref/darkrefs.py +646 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/darkref/darkrefscopy.py +364 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/lamino/__init__.py +1 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/lamino/tofu.py +1000 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/nabu/nabucommon.py +696 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/nabu/nabuscores.py +346 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/nabu/nabuslices.py +973 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/nabu/nabuvolume.py +584 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/nabu/utils.py +437 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/normalization/normalization.py +364 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/saaxis/__init__.py +3 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/saaxis/saaxis.py +891 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/sadeltabeta/__init__.py +3 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +808 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/scores/params.py +211 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/test/test_darkref_copy.py +204 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/test/test_saaxis.py +118 -0
- tomwer-1.2.0a3/tomwer/core/process/reconstruction/test/test_sadeltabeta.py +74 -0
- tomwer-1.2.0a3/tomwer/core/process/script/python.py +106 -0
- tomwer-1.2.0a3/tomwer/core/process/stitching/nabustitcher.py +170 -0
- tomwer-1.2.0a3/tomwer/core/process/task.py +455 -0
- tomwer-1.2.0a3/tomwer/core/process/test/test_axis.py +308 -0
- tomwer-1.2.0a3/tomwer/core/process/test/test_conditions.py +92 -0
- tomwer-1.2.0a3/tomwer/core/process/test/test_dark_and_flat.py +388 -0
- tomwer-1.2.0a3/tomwer/core/process/test/test_data_transfer.py +379 -0
- tomwer-1.2.0a3/tomwer/core/process/test/test_data_watcher.py +82 -0
- tomwer-1.2.0a3/tomwer/core/process/test/test_lamino.py +76 -0
- tomwer-1.2.0a3/tomwer/core/process/test/test_nabu.py +483 -0
- tomwer-1.2.0a3/tomwer/core/process/test/test_normalization.py +104 -0
- tomwer-1.2.0a3/tomwer/core/process/test/test_timer.py +77 -0
- tomwer-1.2.0a3/tomwer/core/process/visualization/dataviewer.py +39 -0
- tomwer-1.2.0a3/tomwer/core/process/visualization/diffviewer.py +39 -0
- tomwer-1.2.0a3/tomwer/core/process/visualization/imagestackviewer.py +39 -0
- tomwer-1.2.0a3/tomwer/core/process/visualization/radiostack.py +39 -0
- tomwer-1.2.0a3/tomwer/core/process/visualization/samplemoved.py +40 -0
- tomwer-1.2.0a3/tomwer/core/process/visualization/sinogramviewer.py +39 -0
- tomwer-1.2.0a3/tomwer/core/process/visualization/slicestack.py +40 -0
- tomwer-1.2.0a3/tomwer/core/process/visualization/volumeviewer.py +40 -0
- tomwer-1.2.0a3/tomwer/core/scan/hdf5scan.py +537 -0
- tomwer-1.2.0a3/tomwer/core/scan/scanbase.py +855 -0
- tomwer-1.2.0a3/tomwer/core/scan/test/test_process_registration.py +145 -0
- tomwer-1.2.0a3/tomwer/core/settings.py +173 -0
- tomwer-1.2.0a3/tomwer/core/test/test_lamino.py +92 -0
- tomwer-1.2.0a3/tomwer/core/utils/__init__.py +466 -0
- tomwer-1.2.0a3/tomwer/core/utils/locker.py +85 -0
- tomwer-1.2.0a3/tomwer/core/utils/resource.py +43 -0
- tomwer-1.2.0a3/tomwer/core/utils/scanutils.py +448 -0
- tomwer-1.2.0a3/tomwer/gui/cluster/slurm.py +465 -0
- tomwer-1.2.0a3/tomwer/gui/cluster/supervisor.py +429 -0
- tomwer-1.2.0a3/tomwer/gui/cluster/test/test_cluster.py +95 -0
- tomwer-1.2.0a3/tomwer/gui/conditions/filter.py +143 -0
- tomwer-1.2.0a3/tomwer/gui/control/datalist.py +1033 -0
- tomwer-1.2.0a3/tomwer/gui/control/email.py +183 -0
- tomwer-1.2.0a3/tomwer/gui/control/reducedarkflatselector.py +545 -0
- tomwer-1.2.0a3/tomwer/gui/control/singletomoobj.py +179 -0
- tomwer-1.2.0a3/tomwer/gui/control/test/test_email.py +35 -0
- tomwer-1.2.0a3/tomwer/gui/control/test/test_reducedarkflat_selector.py +280 -0
- tomwer-1.2.0a3/tomwer/gui/reconstruction/axis/CompareImages.py +409 -0
- tomwer-1.2.0a3/tomwer/gui/reconstruction/axis/axis.py +616 -0
- tomwer-1.2.0a3/tomwer/gui/reconstruction/axis/radioaxis.py +2603 -0
- tomwer-1.2.0a3/tomwer/gui/reconstruction/darkref/darkrefcopywidget.py +301 -0
- tomwer-1.2.0a3/tomwer/gui/reconstruction/darkref/darkrefwidget.py +444 -0
- tomwer-1.2.0a3/tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +380 -0
- tomwer-1.2.0a3/tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +551 -0
- tomwer-1.2.0a3/tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +988 -0
- tomwer-1.2.0a3/tomwer/gui/reconstruction/normalization/intensity.py +922 -0
- tomwer-1.2.0a3/tomwer/gui/reconstruction/saaxis/corrangeselector.py +831 -0
- tomwer-1.2.0a3/tomwer/gui/reconstruction/saaxis/saaxis.py +525 -0
- tomwer-1.2.0a3/tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +500 -0
- tomwer-1.2.0a3/tomwer/gui/reconstruction/scores/scoreplot.py +886 -0
- tomwer-1.2.0a3/tomwer/gui/samplemoved/__init__.py +253 -0
- tomwer-1.2.0a3/tomwer/gui/stackplot.py +735 -0
- tomwer-1.2.0a3/tomwer/gui/stacks.py +240 -0
- tomwer-1.2.0a3/tomwer/gui/stitching/stitchandbackground.py +151 -0
- tomwer-1.2.0a3/tomwer/gui/stitching/stitching.py +1165 -0
- tomwer-1.2.0a3/tomwer/gui/stitching/stitching_raw.py +575 -0
- tomwer-1.2.0a3/tomwer/gui/utils/__init__.py +1 -0
- tomwer-1.2.0a3/tomwer/gui/utils/illustrations.py +123 -0
- tomwer-1.2.0a3/tomwer/gui/utils/inputwidget.py +610 -0
- tomwer-1.2.0a3/tomwer/gui/utils/slider.py +94 -0
- tomwer-1.2.0a3/tomwer/gui/utils/utils.py +93 -0
- tomwer-1.2.0a3/tomwer/gui/visualization/dataviewer.py +698 -0
- tomwer-1.2.0a3/tomwer/gui/visualization/diffviewer/diffviewer.py +579 -0
- tomwer-1.2.0a3/tomwer/gui/visualization/reconstructionparameters.py +257 -0
- tomwer-1.2.0a3/tomwer/gui/visualization/sinogramviewer.py +303 -0
- tomwer-1.2.0a3/tomwer/gui/visualization/test/test_reconstruction_parameters.py +83 -0
- tomwer-1.2.0a3/tomwer/gui/visualization/volumeviewer.py +447 -0
- tomwer-1.2.0a3/tomwer/resources/__init__.py +156 -0
- tomwer-1.2.0a3/tomwer/resources/gui/icons/compose.png +0 -0
- tomwer-1.2.0a3/tomwer/resources/gui/icons/compose.svg +75 -0
- tomwer-1.2.0a3/tomwer/synctools/datatransfert.py +44 -0
- tomwer-1.2.0a3/tomwer/synctools/stacks/edit/darkflatpatch.py +164 -0
- tomwer-1.2.0a3/tomwer/synctools/stacks/edit/imagekeyeditor.py +135 -0
- tomwer-1.2.0a3/tomwer/synctools/stacks/processingstack.py +197 -0
- tomwer-1.2.0a3/tomwer/synctools/stacks/reconstruction/axis.py +218 -0
- tomwer-1.2.0a3/tomwer/synctools/stacks/reconstruction/dkrefcopy.py +177 -0
- tomwer-1.2.0a3/tomwer/synctools/stacks/reconstruction/lamino.py +233 -0
- tomwer-1.2.0a3/tomwer/synctools/stacks/reconstruction/nabu.py +205 -0
- tomwer-1.2.0a3/tomwer/synctools/stacks/reconstruction/normalization.py +136 -0
- tomwer-1.2.0a3/tomwer/synctools/stacks/reconstruction/saaxis.py +182 -0
- tomwer-1.2.0a3/tomwer/synctools/stacks/reconstruction/sadeltabeta.py +183 -0
- tomwer-1.2.0a3/tomwer/synctools/test/test_darkRefs.py +474 -0
- tomwer-1.2.0a3/tomwer/synctools/test/test_foldertransfer.py +407 -0
- tomwer-1.2.0a3/tomwer/version.py +134 -0
- tomwer-1.2.0a3/tomwer.egg-info/PKG-INFO +139 -0
- tomwer-1.2.0a3/tomwer.egg-info/SOURCES.txt +787 -0
- tomwer-1.2.0a3/tomwer.egg-info/entry_points.txt +20 -0
- tomwer-1.2.0a3/tomwer.egg-info/requires.txt +168 -0
- tomwer-1.2.0a1/PKG-INFO +0 -178
- tomwer-1.2.0a1/README.rst +0 -146
- tomwer-1.2.0a1/orangecontrib/__init__.py +0 -3
- tomwer-1.2.0a1/orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows +0 -59
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/__init__.py +0 -63
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py +0 -244
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py +0 -99
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/control/AdvancementOW.py +0 -66
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py +0 -235
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/control/DataListOW.py +0 -128
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/control/DataListenerOW.py +0 -409
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/control/DataSelectorOW.py +0 -135
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/control/DataTransfertOW.py +0 -222
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/control/DataValidatorOW.py +0 -195
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/control/DataWatcherOW.py +0 -208
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +0 -234
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/control/FilterOW.py +0 -128
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/control/NXTomomillOW.py +0 -312
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/control/NotifierOW.py +0 -127
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +0 -144
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/control/TimerOW.py +0 -130
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/control/TomoObjSerieOW.py +0 -87
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/control/VolumeSelector.py +0 -140
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/control/VolumeSymLinkOW.py +0 -188
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py +0 -177
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py +0 -66
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +0 -183
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py +0 -134
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +0 -127
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +0 -129
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/other/PythonScriptOW.py +0 -787
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +0 -559
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +0 -235
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py +0 -256
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +0 -285
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +0 -454
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +0 -469
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +0 -393
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +0 -307
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/reconstruction/TofuOW.py +0 -196
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/stitching/StitcherOW.py +0 -82
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/stitching/ZStitchingConfigOW.py +0 -119
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +0 -141
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +0 -79
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/visualization/LivesliceOW.py +0 -88
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py +0 -70
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/visualization/RadioStackOW.py +0 -94
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py +0 -115
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +0 -95
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/visualization/SliceStackOW.py +0 -109
- tomwer-1.2.0a1/orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py +0 -88
- tomwer-1.2.0a1/setup.cfg +0 -155
- tomwer-1.2.0a1/tomwer/__main__.py +0 -178
- tomwer-1.2.0a1/tomwer/app/axis.py +0 -188
- tomwer-1.2.0a1/tomwer/app/canvas_launcher/config.py +0 -206
- tomwer-1.2.0a1/tomwer/app/canvas_launcher/mainwindow.py +0 -381
- tomwer-1.2.0a1/tomwer/app/darkref.py +0 -181
- tomwer-1.2.0a1/tomwer/app/diffframe.py +0 -94
- tomwer-1.2.0a1/tomwer/app/imagekeyeditor.py +0 -104
- tomwer-1.2.0a1/tomwer/app/intensitynormalization.py +0 -207
- tomwer-1.2.0a1/tomwer/app/lamino.py +0 -138
- tomwer-1.2.0a1/tomwer/app/radiostack.py +0 -83
- tomwer-1.2.0a1/tomwer/app/saaxis.py +0 -286
- tomwer-1.2.0a1/tomwer/app/sadeltabeta.py +0 -348
- tomwer-1.2.0a1/tomwer/app/samplemoved.py +0 -80
- tomwer-1.2.0a1/tomwer/app/scanviewer.py +0 -85
- tomwer-1.2.0a1/tomwer/app/sinogramviewer.py +0 -112
- tomwer-1.2.0a1/tomwer/app/slicestack.py +0 -80
- tomwer-1.2.0a1/tomwer/app/zstitching.py +0 -287
- tomwer-1.2.0a1/tomwer/core/futureobject.py +0 -183
- tomwer-1.2.0a1/tomwer/core/process/conditions/filters.py +0 -217
- tomwer-1.2.0a1/tomwer/core/process/control/datadiscovery.py +0 -7
- tomwer-1.2.0a1/tomwer/core/process/control/datawatcher/datawatcher.py +0 -462
- tomwer-1.2.0a1/tomwer/core/process/control/nxtomoconcatenate.py +0 -120
- tomwer-1.2.0a1/tomwer/core/process/control/nxtomomill.py +0 -137
- tomwer-1.2.0a1/tomwer/core/process/control/scanselector.py +0 -8
- tomwer-1.2.0a1/tomwer/core/process/control/scantransfer.py +0 -690
- tomwer-1.2.0a1/tomwer/core/process/control/test/test_concatenate_nxtomos.py +0 -80
- tomwer-1.2.0a1/tomwer/core/process/control/test/test_volume_link.py +0 -73
- tomwer-1.2.0a1/tomwer/core/process/control/timer.py +0 -84
- tomwer-1.2.0a1/tomwer/core/process/control/tomoobjserie.py +0 -8
- tomwer-1.2.0a1/tomwer/core/process/control/volumeselector.py +0 -10
- tomwer-1.2.0a1/tomwer/core/process/control/volumesymlink.py +0 -161
- tomwer-1.2.0a1/tomwer/core/process/edit/darkflatpatch.py +0 -116
- tomwer-1.2.0a1/tomwer/core/process/edit/imagekeyeditor.py +0 -231
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/axis/__init__.py +0 -2
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/axis/axis.py +0 -998
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/axis/params.py +0 -944
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/darkref/darkrefs.py +0 -609
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/darkref/darkrefscopy.py +0 -354
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/lamino/__init__.py +0 -1
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/lamino/tofu.py +0 -980
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/nabu/nabucommon.py +0 -617
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/nabu/nabuscores.py +0 -309
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/nabu/nabuslices.py +0 -795
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/nabu/nabuvolume.py +0 -452
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/nabu/utils.py +0 -463
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/normalization/normalization.py +0 -357
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/saaxis/__init__.py +0 -2
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/saaxis/saaxis.py +0 -703
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/sadeltabeta/__init__.py +0 -2
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +0 -595
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/scores/params.py +0 -198
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/test/test_darkref_copy.py +0 -202
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/test/test_saaxis.py +0 -105
- tomwer-1.2.0a1/tomwer/core/process/reconstruction/test/test_sadeltabeta.py +0 -71
- tomwer-1.2.0a1/tomwer/core/process/script/python.py +0 -101
- tomwer-1.2.0a1/tomwer/core/process/stitching/nabustitcher.py +0 -163
- tomwer-1.2.0a1/tomwer/core/process/task.py +0 -462
- tomwer-1.2.0a1/tomwer/core/process/test/test_axis.py +0 -298
- tomwer-1.2.0a1/tomwer/core/process/test/test_conditions.py +0 -92
- tomwer-1.2.0a1/tomwer/core/process/test/test_dark_and_flat.py +0 -383
- tomwer-1.2.0a1/tomwer/core/process/test/test_data_transfer.py +0 -379
- tomwer-1.2.0a1/tomwer/core/process/test/test_data_watcher.py +0 -82
- tomwer-1.2.0a1/tomwer/core/process/test/test_lamino.py +0 -76
- tomwer-1.2.0a1/tomwer/core/process/test/test_nabu.py +0 -478
- tomwer-1.2.0a1/tomwer/core/process/test/test_normalization.py +0 -103
- tomwer-1.2.0a1/tomwer/core/process/test/test_timer.py +0 -77
- tomwer-1.2.0a1/tomwer/core/process/visualization/dataviewer.py +0 -35
- tomwer-1.2.0a1/tomwer/core/process/visualization/diffviewer.py +0 -35
- tomwer-1.2.0a1/tomwer/core/process/visualization/imagestackviewer.py +0 -35
- tomwer-1.2.0a1/tomwer/core/process/visualization/radiostack.py +0 -35
- tomwer-1.2.0a1/tomwer/core/process/visualization/samplemoved.py +0 -36
- tomwer-1.2.0a1/tomwer/core/process/visualization/sinogramviewer.py +0 -35
- tomwer-1.2.0a1/tomwer/core/process/visualization/slicestack.py +0 -36
- tomwer-1.2.0a1/tomwer/core/process/visualization/volumeviewer.py +0 -36
- tomwer-1.2.0a1/tomwer/core/scan/hdf5scan.py +0 -537
- tomwer-1.2.0a1/tomwer/core/scan/scanbase.py +0 -851
- tomwer-1.2.0a1/tomwer/core/scan/test/test_process_registration.py +0 -145
- tomwer-1.2.0a1/tomwer/core/settings.py +0 -115
- tomwer-1.2.0a1/tomwer/core/test/test_lamino.py +0 -91
- tomwer-1.2.0a1/tomwer/core/utils/__init__.py +0 -450
- tomwer-1.2.0a1/tomwer/core/utils/locker.py +0 -86
- tomwer-1.2.0a1/tomwer/core/utils/resource.py +0 -48
- tomwer-1.2.0a1/tomwer/core/utils/scanutils.py +0 -446
- tomwer-1.2.0a1/tomwer/gui/cluster/slurm.py +0 -381
- tomwer-1.2.0a1/tomwer/gui/cluster/supervisor.py +0 -424
- tomwer-1.2.0a1/tomwer/gui/cluster/test/test_cluster.py +0 -80
- tomwer-1.2.0a1/tomwer/gui/conditions/filter.py +0 -143
- tomwer-1.2.0a1/tomwer/gui/control/datalist.py +0 -1020
- tomwer-1.2.0a1/tomwer/gui/control/singletomoobj.py +0 -157
- tomwer-1.2.0a1/tomwer/gui/reconstruction/axis/CompareImages.py +0 -409
- tomwer-1.2.0a1/tomwer/gui/reconstruction/axis/axis.py +0 -612
- tomwer-1.2.0a1/tomwer/gui/reconstruction/axis/radioaxis.py +0 -2595
- tomwer-1.2.0a1/tomwer/gui/reconstruction/darkref/darkrefcopywidget.py +0 -299
- tomwer-1.2.0a1/tomwer/gui/reconstruction/darkref/darkrefwidget.py +0 -444
- tomwer-1.2.0a1/tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +0 -378
- tomwer-1.2.0a1/tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +0 -550
- tomwer-1.2.0a1/tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +0 -988
- tomwer-1.2.0a1/tomwer/gui/reconstruction/normalization/intensity.py +0 -922
- tomwer-1.2.0a1/tomwer/gui/reconstruction/saaxis/corrangeselector.py +0 -830
- tomwer-1.2.0a1/tomwer/gui/reconstruction/saaxis/saaxis.py +0 -525
- tomwer-1.2.0a1/tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +0 -500
- tomwer-1.2.0a1/tomwer/gui/reconstruction/scores/scoreplot.py +0 -884
- tomwer-1.2.0a1/tomwer/gui/samplemoved/__init__.py +0 -253
- tomwer-1.2.0a1/tomwer/gui/stackplot.py +0 -724
- tomwer-1.2.0a1/tomwer/gui/stacks.py +0 -240
- tomwer-1.2.0a1/tomwer/gui/stitching/stitchandbackground.py +0 -151
- tomwer-1.2.0a1/tomwer/gui/stitching/stitching.py +0 -1165
- tomwer-1.2.0a1/tomwer/gui/stitching/stitching_raw.py +0 -575
- tomwer-1.2.0a1/tomwer/gui/utils/__init__.py +0 -85
- tomwer-1.2.0a1/tomwer/gui/utils/illustrations.py +0 -123
- tomwer-1.2.0a1/tomwer/gui/utils/inputwidget.py +0 -605
- tomwer-1.2.0a1/tomwer/gui/utils/slider.py +0 -94
- tomwer-1.2.0a1/tomwer/gui/visualization/dataviewer.py +0 -695
- tomwer-1.2.0a1/tomwer/gui/visualization/diffviewer/diffviewer.py +0 -579
- tomwer-1.2.0a1/tomwer/gui/visualization/reconstructionparameters.py +0 -237
- tomwer-1.2.0a1/tomwer/gui/visualization/sinogramviewer.py +0 -297
- tomwer-1.2.0a1/tomwer/gui/visualization/test/test_reconstruction_parameters.py +0 -85
- tomwer-1.2.0a1/tomwer/gui/visualization/volumeviewer.py +0 -445
- tomwer-1.2.0a1/tomwer/resources/__init__.py +0 -144
- tomwer-1.2.0a1/tomwer/synctools/datatransfert.py +0 -42
- tomwer-1.2.0a1/tomwer/synctools/stacks/edit/darkflatpatch.py +0 -159
- tomwer-1.2.0a1/tomwer/synctools/stacks/edit/imagekeyeditor.py +0 -154
- tomwer-1.2.0a1/tomwer/synctools/stacks/processingstack.py +0 -161
- tomwer-1.2.0a1/tomwer/synctools/stacks/reconstruction/axis.py +0 -217
- tomwer-1.2.0a1/tomwer/synctools/stacks/reconstruction/dkrefcopy.py +0 -176
- tomwer-1.2.0a1/tomwer/synctools/stacks/reconstruction/lamino.py +0 -233
- tomwer-1.2.0a1/tomwer/synctools/stacks/reconstruction/nabu.py +0 -296
- tomwer-1.2.0a1/tomwer/synctools/stacks/reconstruction/normalization.py +0 -135
- tomwer-1.2.0a1/tomwer/synctools/stacks/reconstruction/saaxis.py +0 -196
- tomwer-1.2.0a1/tomwer/synctools/stacks/reconstruction/sadeltabeta.py +0 -199
- tomwer-1.2.0a1/tomwer/synctools/test/test_darkRefs.py +0 -465
- tomwer-1.2.0a1/tomwer/synctools/test/test_foldertransfer.py +0 -407
- tomwer-1.2.0a1/tomwer/third_party/__init__.py +0 -0
- tomwer-1.2.0a1/tomwer/third_party/nabu/__init__.py +0 -0
- tomwer-1.2.0a1/tomwer/third_party/nabu/preproc/__init__.py +0 -0
- tomwer-1.2.0a1/tomwer/third_party/nabu/preproc/phase.py +0 -389
- tomwer-1.2.0a1/tomwer/third_party/nabu/utils.py +0 -202
- tomwer-1.2.0a1/tomwer/third_party/tango/__init__.py +0 -0
- tomwer-1.2.0a1/tomwer/third_party/tango/device.py +0 -15
- tomwer-1.2.0a1/tomwer/version.py +0 -134
- tomwer-1.2.0a1/tomwer.egg-info/PKG-INFO +0 -178
- tomwer-1.2.0a1/tomwer.egg-info/SOURCES.txt +0 -767
- tomwer-1.2.0a1/tomwer.egg-info/entry_points.txt +0 -20
- tomwer-1.2.0a1/tomwer.egg-info/requires.txt +0 -168
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/LICENSE +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/MANIFEST.in +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/orange/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/orange/managedprocess.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/orange/settings.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/state_summary.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/tutorials/EBS_tomo_listener.ows +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/tutorials/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/tutorials/cast_volume.ows +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/tutorials/simple_slice_reconstruction.ows +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/tutorials/using_saaxis_to_find_cor.ows +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/cluster/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/cluster/icons/slurm.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/cluster/icons/slurm.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/NXtomoConcatenate.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/advancement.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/advancement.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/concatenate_nxtomos.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/concatenate_nxtomos.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/datadiscover.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/datadiscover.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/datalistener.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/datalistener.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/datawatcher.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/edf2nx.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/edf2nx.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/esrf.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/folder-transfert.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/image_key_upgrader.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/namefilter.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/namefilter.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/notification.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/notification.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/nxtomomill.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/nxtomomill.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/progress.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/scanlist.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/scanselector.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/scanselector.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/time.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/tomoobjserie.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/tomoobjserie.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/tomwer.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/validator.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/validatorcrack.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/volumeselector.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/volumeselector.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/volumesymlink.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/control/icons/volumesymlink.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/debugtools/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/debugtools/icons/hammer.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/debugtools/icons/hammer.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/debugtools/icons/inspector.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/debugtools/icons/inspector.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/edit/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/edit/icons/image_key_editor.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/edit/icons/image_key_editor.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/edit/test/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/edit/test/test_dark_flat_patch.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/edit/test/test_image_key_editor.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/edit/test/test_image_key_upgrader.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/edit/test/test_nxtomo_editor.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/icons/tomwer.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/icons/tomwer_build.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/icons/tomwer_build.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/icons/tomwer_cluster.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/icons/tomwer_cluster.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/icons/tomwer_control.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/icons/tomwer_control.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/icons/tomwer_debug_tools.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/icons/tomwer_debug_tools.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/icons/tomwer_edit.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/icons/tomwer_edit.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/icons/tomwer_other.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/icons/tomwer_other.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/icons/tomwer_stitching.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/icons/tomwer_stitching.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/icons/tomwer_visu.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/icons/tomwer_visu.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/other/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/other/icons/PythonScript.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/NabuHelicalPrepareWeightsDoubleOW.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/XY_lamino.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/XZ_lamino.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/YZ_lamino.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/axis.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/axis.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/bricks.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/darkref.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/darkref.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/esrf.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_prepare_weights_double.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_prepare_weights_double.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/norm_I.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/norm_I.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/refCopy.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/refCopy.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/saaxis.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/saaxis.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/tomogui.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/reconstruction/icons/tomwer.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/stitching/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/utils.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/diff.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/diff.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/esrf.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/eye.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/eyecrack.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/liveslice.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/liveslice.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/radiosstack.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/radiosstack.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/sinogramviewer.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/slicesstack.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/slicesstack.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/tomwer.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/setup.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/app/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/app/canvas.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/app/canvas_launcher/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/app/canvas_launcher/environ.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/app/canvas_launcher/splash.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/app/canvas_launcher/widgetsscheme.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/app/imagekeyupgrader.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/app/nabuapp.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/app/nxtomoeditor.py +0 -0
- /tomwer-1.2.0a1/tomwer/app/darkrefpatch.py → /tomwer-1.2.0a3/tomwer/app/patchrawdarkflat.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/app/rsync.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/app/stopdatalistener.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/cluster/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/cluster/cluster.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/log/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/log/logger.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/log/processlog.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/cluster/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/cluster/supervisor.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/conditions/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/control/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/control/datalistener/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/control/datalistener/datalistener.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/control/datalistener/rpcserver.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/control/datawatcher/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/control/datawatcher/datawatcherobserver.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/control/datawatcher/datawatcherprocess.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/control/datawatcher/edfdwprocess.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/control/datawatcher/hdf5dwprocess.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/control/datawatcher/status.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/control/scanlist.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/control/scanvalidator.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/control/singletomoobj.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/control/test/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/edit/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/axis/anglemode.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/axis/mode.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/axis/projectiontype.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/darkref/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/darkref/params.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/darkref/settings.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/nabu/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/nabu/castvolume.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/nabu/helical.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/nabu/settings.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/nabu/target.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/normalization/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/normalization/params.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/paramsbase.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/saaxis/params.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/sadeltabeta/params.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/scores/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/scores/scores.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/test/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/test/test_axis_params.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/test/test_darkref.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/test/test_paramsbase.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/test/test_utils.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/utils/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/reconstruction/utils/cor.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/script/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/stitching/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/stitching/metadataholder.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/test/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/test/test_data_listener.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/utils.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/visualization/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/process/visualization/liveslice.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/progress.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/scan/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/scan/blissscan.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/scan/edfscan.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/scan/futurescan.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/scan/helicalmetadata.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/scan/scanfactory.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/scan/scantype.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/scan/test/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/scan/test/test_edf.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/scan/test/test_future_scan.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/scan/test/test_h5.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/scan/test/test_scan.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/signal.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/test/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/test/test_scanutils.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/test/test_utils.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/tomwer_object.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/utils/Singleton.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/utils/char.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/utils/deprecation.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/utils/ftseriesutils.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/utils/gpu.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/utils/image.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/utils/logconfig.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/utils/normalization.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/utils/nxtomoutils.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/utils/slurm.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/utils/threads.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/utils/time.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/utils/volumeutils.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/volume/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/volume/edfvolume.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/volume/hdf5volume.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/volume/jp2kvolume.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/volume/rawvolume.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/volume/tiffvolume.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/volume/volumebase.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/core/volume/volumefactory.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/cluster/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/cluster/test/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/cluster/test/test_supervisor.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/conditions/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/actions.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/datadiscovery.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/datalistener.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/datareacheractions.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/datatransfert.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/datavalidator.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/datawatcher/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/datawatcher/configuration.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/datawatcher/controlwidget.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/datawatcher/datawatcher.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/datawatcher/datawatcherobserver.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/history.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/nxtomomill.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/observations.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/scanselectorwidget.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/selectorwidgetbase.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/serie/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/serie/nxtomoconcatenate.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/serie/seriecreator.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/serie/seriewaiter.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/test/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/test/test_datadiscovery.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/test/test_datalist.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/test/test_datalistener.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/test/test_datavalidator.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/test/test_inputwidget.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/test/test_process_manager.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/test/test_scanselector.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/test/test_scanvalidator.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/test/test_single_tomo_obj.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/test/test_volume_dialog.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/test/test_volumeselector.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/control/volumeselectorwidget.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/debugtools/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/debugtools/datasetgenerator.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/debugtools/objectinspector.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/edit/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/edit/dkrfpatch.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/edit/imagekeyeditor.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/edit/nxtomoeditor.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/edit/nxtomowarmer.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/edit/test/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/edit/test/test_dkrf_patch.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/edit/test/test_image_key_editor.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/edit/test/test_nx_editor.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/icons.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/illustrations.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/imagefromfile.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/qconfigfile.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/qfolderdialog.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/qlefilesystem.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/axis/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/darkref/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/lamino/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/lamino/tofu/TofuOptionLoader.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/lamino/tofu/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/lamino/tofu/misc.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/lamino/tofu/projections.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/lamino/tofu/settings.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/lamino/tofu/tofu.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/lamino/tofu/tofuexpert.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/lamino/tofu/tofuoutput.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/nabu/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/nabu/action.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/nabu/castvolume.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/nabu/check.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/nabu/helical.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/nabu/nabuconfig/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/nabu/nabuconfig/base.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/nabu/nabuconfig/output.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/nabu/nabuflow.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/nabu/slices.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/nabu/slurm.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/nabu/volume.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/normalization/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/saaxis/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/saaxis/dimensionwidget.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/saaxis/sliceselector.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/sadeltabeta/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/scores/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/scores/control.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/test/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/test/test_axis.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/test/test_lamino.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/test/test_nabu.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/test/test_saaxis.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/reconstruction/test/test_sadeltabeta.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/samplemoved/selectiontable.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/settings.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/stitching/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/stitching/axisorderedlist.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/stitching/config/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/stitching/config/axisparams.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/stitching/config/output.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/stitching/config/positionoveraxis.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/stitching/config/stitchingstrategies.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/stitching/config/tomoobjdetails.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/stitching/metadataholder.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/stitching/stitching_preview.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/stitching/z_stitching/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/stitching/z_stitching/fineestimation.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/test/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/test/test_axis_gui.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/test/test_qfolder_dialog.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/utils/buttons.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/utils/completer.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/utils/flow.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/utils/lineselector/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/utils/lineselector/lineselector.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/utils/qt_utils.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/utils/sandboxes.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/utils/scandescription.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/utils/scrollarea.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/utils/splashscreen.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/utils/unitsystem.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/utils/vignettes.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/utils/waiterthread.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/visualization/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/visualization/diffviewer/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/visualization/diffviewer/shiftwidget.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/visualization/fullscreenplot.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/visualization/nxtomometadata.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/visualization/scanoverview.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/visualization/test/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/visualization/test/test_dataviewer.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/visualization/test/test_diffviewer.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/visualization/test/test_sinogramviewer.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/visualization/test/test_stacks.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/visualization/test/test_volumeviewer.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/visualization/tomoobjoverview.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/gui/visualization/volumeoverview.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/io/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/io/utils/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/io/utils/h5pyutils.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/io/utils/tomoobj.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/io/utils/utils.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/Imagej_icon.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/a.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/a.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/add.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/add.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/advanced_user.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/advanced_user.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/axis.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/axis.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/background.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/background.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/basic_user.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/basic_user.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/cfg_file_active.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/cfg_file_active.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/cfg_file_inactive.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/cfg_file_inactive.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/compare_mode_a_minus_b.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/compare_mode_a_minus_b.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/datalistener_activate.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/datalistener_activate.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/datalistener_deactivate.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/datalistener_deactivate.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/delta_beta.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/delta_beta.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/exit.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/exit.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/full_screen.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/full_screen.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/hammer.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/hammer.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/health.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/health.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/high_speed.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/high_speed.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/history.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/hourglass.npy +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/imageNotFound.npy +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/information.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/information.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/input.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/input.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/invisible.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/invisible.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/lamino_parameters.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/lineselection.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/lineselection.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/list_selection.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/list_selection.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/locked.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/locked.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/log.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/log.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/loop.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/low_speed.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/low_speed.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/medium_low_speed.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/medium_low_speed.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/minimalistic_user.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/minimalistic_user.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/multi-document-save.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/multi-document-save.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/nabu.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/nabu.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/output.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/output.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/parameters.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/parameters.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/plot-xleft.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/plot-xleft.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/plot-xright.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/plot-xright.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/range_selection.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/range_selection.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/results.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/results.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/rm.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/rm.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/roman_four.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/roman_four.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/roman_one.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/roman_one.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/roman_three.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/roman_three.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/roman_two.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/roman_two.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/single_selection.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/single_selection.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/sinogram.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/slurm.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/slurm_active.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/slurm_active.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/slurm_deactive.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/slurm_deactive.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/stitching_modeRaw.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/stitching_modeRaw.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/stitching_modeRefine.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/stitching_modeRefine.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/switch.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/tomwer.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/tomwer_large.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/unlocked.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/unlocked.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/unsharp_mask.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/update_stitching_preview.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/vignettes.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/vignettes.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/visible.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/visible.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/warning.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/icons/warning.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/ctf_z1.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/ctf_z1.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/flow_down.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/flow_down.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/flow_right.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/flow_right.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/lamino_angle.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/lamino_angle.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/lamino_beta_angle.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/lamino_beta_angle.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/lamino_theta_angle.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/lamino_theta_angle.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/manual_slice.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/manual_slice.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/no_rot.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/psi_angle.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/psi_angle.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/rotation_center.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/rotation_center.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/slice_stack.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/slice_stack.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/xy_slice.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/xy_slice.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/xz_slice.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/xz_slice.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/yz_slice.png +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/resources/gui/illustrations/yz_slice.svg +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/synctools/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/synctools/axis.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/synctools/darkref.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/synctools/datalistener.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/synctools/imageloaderthread.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/synctools/rsyncmanager.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/synctools/saaxis.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/synctools/sadeltabeta.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/synctools/stacks/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/synctools/stacks/control/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/synctools/stacks/control/datalistener.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/synctools/stacks/edit/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/synctools/stacks/reconstruction/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/synctools/stacks/reconstruction/castvolume.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/synctools/test/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/synctools/test/test_scanstages.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/synctools/utils/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/synctools/utils/scanstages.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/tests/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/tests/conftest.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/tests/test_scripts.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/tests/test_utils.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/tests/utils/__init__.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/tests/utils/utilstest.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer/utils.py +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer.egg-info/dependency_links.txt +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer.egg-info/namespace_packages.txt +0 -0
- {tomwer-1.2.0a1 → tomwer-1.2.0a3}/tomwer.egg-info/top_level.txt +0 -0
tomwer-1.2.0a3/PKG-INFO
ADDED
@@ -0,0 +1,139 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: tomwer
|
3
|
+
Version: 1.2.0a3
|
4
|
+
Summary: "tomography workflow tools"
|
5
|
+
Home-page: https://gitlab.esrf.fr/tomotools/tomwer
|
6
|
+
Author: data analysis unit
|
7
|
+
Author-email: henri.payno@esrf.fr
|
8
|
+
License: MIT
|
9
|
+
Project-URL: Bug Tracker, https://gitlab.esrf.fr/tomotools/tomwer/-/issues
|
10
|
+
Keywords: orange3 add-on,ewoks
|
11
|
+
Classifier: Intended Audience :: Education
|
12
|
+
Classifier: Intended Audience :: Science/Research
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
15
|
+
Classifier: Environment :: Console
|
16
|
+
Classifier: Environment :: X11 Applications :: Qt
|
17
|
+
Classifier: Operating System :: POSIX
|
18
|
+
Classifier: Natural Language :: English
|
19
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
20
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
21
|
+
Requires-Python: >=3.6
|
22
|
+
Description-Content-Type: text/markdown
|
23
|
+
Provides-Extra: doc
|
24
|
+
Provides-Extra: _full_base
|
25
|
+
Provides-Extra: full_no_cuda
|
26
|
+
Provides-Extra: full
|
27
|
+
Provides-Extra: _dev_spec
|
28
|
+
Provides-Extra: dev
|
29
|
+
Provides-Extra: dev_no_cuda
|
30
|
+
Provides-Extra: setup_requires
|
31
|
+
License-File: LICENSE
|
32
|
+
|
33
|
+
tomwer
|
34
|
+
======
|
35
|
+
|
36
|
+
tomwer is offering tools to automate acquisition and reconstruction processes for Tomography.
|
37
|
+
It contains:
|
38
|
+
|
39
|
+
- a library to access each acquisition process individually
|
40
|
+
- gui and applications to control main processes (reconstruction, data transfert...) and execute them as a stand alone application.
|
41
|
+
- an orange add-on to help users defining their own workflow (http://orange.biolab.si)
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
.. image:: http://www.edna-site.org/pub/doc/tomwer/extra/tomwer_start_short.gif
|
46
|
+
|
47
|
+
|
48
|
+
.. |Gitlab Status| image:: https://gitlab.esrf.fr/tomotools/tomwer/badges/master/pipeline.svg
|
49
|
+
:target: https://gitlab.esrf.fr/tomotools/tomwer/pipelines
|
50
|
+
|
51
|
+
|
52
|
+
Documentation
|
53
|
+
-------------
|
54
|
+
|
55
|
+
`Latest documentation <https://tomotools.gitlab-pages.esrf.fr/tomwer/>`_
|
56
|
+
|
57
|
+
|
58
|
+
Installation
|
59
|
+
------------
|
60
|
+
|
61
|
+
Step 1 - tomwer
|
62
|
+
'''''''''''''''
|
63
|
+
|
64
|
+
To install it with all 'features':
|
65
|
+
|
66
|
+
.. code-block:: bash
|
67
|
+
|
68
|
+
pip install tomwer[full]
|
69
|
+
|
70
|
+
alternatively you can install the master branch from
|
71
|
+
|
72
|
+
.. code-block:: bash
|
73
|
+
|
74
|
+
pip install git+https://gitlab.esrf.fr/tomotools/tomwer/#egg=tomwer[full]
|
75
|
+
|
76
|
+
|
77
|
+
Step 2 - update orange-canvas-core and orange-widget-base (Optional)
|
78
|
+
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
|
79
|
+
|
80
|
+
To access 'processing' wheels and 'reprocess action' you might want to install forks of update orange-canvas-core and orange-widget-base. This is optional and projects works with native orange projects
|
81
|
+
|
82
|
+
.. code-block:: bash
|
83
|
+
|
84
|
+
pip install git+https://github.com/payno/orange-canvas-core --no-deps --upgrade
|
85
|
+
pip install git+https://github.com/payno/orange-widget-base --no-deps --upgrade
|
86
|
+
|
87
|
+
|
88
|
+
Launching applications
|
89
|
+
::::::::::::::::::::::
|
90
|
+
|
91
|
+
After the installation tomwer is embedding several applications.
|
92
|
+
|
93
|
+
Those applications can be launched by calling:
|
94
|
+
|
95
|
+
.. code-block:: bash
|
96
|
+
|
97
|
+
tomwer appName {options}
|
98
|
+
|
99
|
+
.. note:: if you only call `tomwer` then the man page will be displayed.
|
100
|
+
|
101
|
+
.. note:: You can access each application help using ``
|
102
|
+
|
103
|
+
.. code-block:: bash
|
104
|
+
|
105
|
+
tomwer appName --help
|
106
|
+
|
107
|
+
|
108
|
+
tomwer canvas - orange canvas
|
109
|
+
'''''''''''''''''''''''''''''
|
110
|
+
|
111
|
+
You can launch the canvas to create workflows from the different 'bricks'
|
112
|
+
|
113
|
+
.. code-block:: bash
|
114
|
+
|
115
|
+
tomwer canvas
|
116
|
+
|
117
|
+
.. note:: you can also use `orange-canvas`
|
118
|
+
|
119
|
+
.. note:: if your installed a virtual environment do not forget to active it :
|
120
|
+
|
121
|
+
.. code-block:: bash
|
122
|
+
|
123
|
+
source myvirtualenv/bin/activate
|
124
|
+
|
125
|
+
|
126
|
+
Documentation
|
127
|
+
:::::::::::::
|
128
|
+
|
129
|
+
.. code-block:: bash
|
130
|
+
|
131
|
+
sphinx-build doc build/html
|
132
|
+
|
133
|
+
The documentation is build in doc/build/html and the entry point is index.html
|
134
|
+
|
135
|
+
.. code-block:: bash
|
136
|
+
|
137
|
+
firefox build/html/index.html
|
138
|
+
|
139
|
+
.. note:: the build of the documentation need sphinx to be installed. This is not an hard dependacy. So you might need to install it.
|
@@ -0,0 +1,107 @@
|
|
1
|
+
tomwer
|
2
|
+
======
|
3
|
+
|
4
|
+
tomwer is offering tools to automate acquisition and reconstruction processes for Tomography.
|
5
|
+
It contains:
|
6
|
+
|
7
|
+
- a library to access each acquisition process individually
|
8
|
+
- gui and applications to control main processes (reconstruction, data transfert...) and execute them as a stand alone application.
|
9
|
+
- an orange add-on to help users defining their own workflow (http://orange.biolab.si)
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
.. image:: http://www.edna-site.org/pub/doc/tomwer/extra/tomwer_start_short.gif
|
14
|
+
|
15
|
+
|
16
|
+
.. |Gitlab Status| image:: https://gitlab.esrf.fr/tomotools/tomwer/badges/master/pipeline.svg
|
17
|
+
:target: https://gitlab.esrf.fr/tomotools/tomwer/pipelines
|
18
|
+
|
19
|
+
|
20
|
+
Documentation
|
21
|
+
-------------
|
22
|
+
|
23
|
+
`Latest documentation <https://tomotools.gitlab-pages.esrf.fr/tomwer/>`_
|
24
|
+
|
25
|
+
|
26
|
+
Installation
|
27
|
+
------------
|
28
|
+
|
29
|
+
Step 1 - tomwer
|
30
|
+
'''''''''''''''
|
31
|
+
|
32
|
+
To install it with all 'features':
|
33
|
+
|
34
|
+
.. code-block:: bash
|
35
|
+
|
36
|
+
pip install tomwer[full]
|
37
|
+
|
38
|
+
alternatively you can install the master branch from
|
39
|
+
|
40
|
+
.. code-block:: bash
|
41
|
+
|
42
|
+
pip install git+https://gitlab.esrf.fr/tomotools/tomwer/#egg=tomwer[full]
|
43
|
+
|
44
|
+
|
45
|
+
Step 2 - update orange-canvas-core and orange-widget-base (Optional)
|
46
|
+
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
|
47
|
+
|
48
|
+
To access 'processing' wheels and 'reprocess action' you might want to install forks of update orange-canvas-core and orange-widget-base. This is optional and projects works with native orange projects
|
49
|
+
|
50
|
+
.. code-block:: bash
|
51
|
+
|
52
|
+
pip install git+https://github.com/payno/orange-canvas-core --no-deps --upgrade
|
53
|
+
pip install git+https://github.com/payno/orange-widget-base --no-deps --upgrade
|
54
|
+
|
55
|
+
|
56
|
+
Launching applications
|
57
|
+
::::::::::::::::::::::
|
58
|
+
|
59
|
+
After the installation tomwer is embedding several applications.
|
60
|
+
|
61
|
+
Those applications can be launched by calling:
|
62
|
+
|
63
|
+
.. code-block:: bash
|
64
|
+
|
65
|
+
tomwer appName {options}
|
66
|
+
|
67
|
+
.. note:: if you only call `tomwer` then the man page will be displayed.
|
68
|
+
|
69
|
+
.. note:: You can access each application help using ``
|
70
|
+
|
71
|
+
.. code-block:: bash
|
72
|
+
|
73
|
+
tomwer appName --help
|
74
|
+
|
75
|
+
|
76
|
+
tomwer canvas - orange canvas
|
77
|
+
'''''''''''''''''''''''''''''
|
78
|
+
|
79
|
+
You can launch the canvas to create workflows from the different 'bricks'
|
80
|
+
|
81
|
+
.. code-block:: bash
|
82
|
+
|
83
|
+
tomwer canvas
|
84
|
+
|
85
|
+
.. note:: you can also use `orange-canvas`
|
86
|
+
|
87
|
+
.. note:: if your installed a virtual environment do not forget to active it :
|
88
|
+
|
89
|
+
.. code-block:: bash
|
90
|
+
|
91
|
+
source myvirtualenv/bin/activate
|
92
|
+
|
93
|
+
|
94
|
+
Documentation
|
95
|
+
:::::::::::::
|
96
|
+
|
97
|
+
.. code-block:: bash
|
98
|
+
|
99
|
+
sphinx-build doc build/html
|
100
|
+
|
101
|
+
The documentation is build in doc/build/html and the entry point is index.html
|
102
|
+
|
103
|
+
.. code-block:: bash
|
104
|
+
|
105
|
+
firefox build/html/index.html
|
106
|
+
|
107
|
+
.. note:: the build of the documentation need sphinx to be installed. This is not an hard dependacy. So you might need to install it.
|
@@ -0,0 +1,8 @@
|
|
1
|
+
try:
|
2
|
+
__import__("pkg_resources").declare_namespace(__name__)
|
3
|
+
except ImportError:
|
4
|
+
from pkgutil import extend_path
|
5
|
+
|
6
|
+
__path__ = extend_path(__path__, __name__)
|
7
|
+
# orangecontrib is a namespace modules shared by multiple Orange add-on so it
|
8
|
+
# needs to declare namespace.
|
tomwer-1.2.0a3/orangecontrib/tomwer/tutorials/append_raw_darks_and_flats_frames_to_NXtomos.ows
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
<?xml version='1.0' encoding='utf-8'?>
|
2
|
+
<scheme version="2.0" title="Append dark and flat frames to an NXtomo" description="">
|
3
|
+
<nodes>
|
4
|
+
<node id="0" name="image-key-upgrader" qualified_name="orangecontrib.tomwer.widgets.edit.ImageKeyUpgraderOW.ImageKeyUpgraderOW" project_name="tomwer" version="" title="image-key-upgrader" position="(336.0, 221.0)" />
|
5
|
+
<node id="1" name="dark-flat-patch" qualified_name="orangecontrib.tomwer.widgets.edit.DarkFlatPatchOW.DarkFlatPatchOW" project_name="tomwer" version="" title="dark-flat-patch" position="(579.0, 221.0)" />
|
6
|
+
<node id="2" name="reduced darks and flats" qualified_name="orangecontrib.tomwer.widgets.reconstruction.DarkRefAndCopyOW.DarkRefAndCopyOW" project_name="tomwer" version="" title="reduced darks and flats" position="(781.0, 221.0)" />
|
7
|
+
<node id="3" name="scan selector" qualified_name="orangecontrib.tomwer.widgets.control.DataSelectorOW.DataSelectorOW" project_name="tomwer" version="" title="scan selector" position="(133.0, 222.0)" />
|
8
|
+
<node id="4" name="scan selector" qualified_name="orangecontrib.tomwer.widgets.control.DataSelectorOW.DataSelectorOW" project_name="tomwer" version="" title="scan selector (1)" position="(981.0, 222.0)" />
|
9
|
+
</nodes>
|
10
|
+
<links>
|
11
|
+
<link id="0" source_node_id="3" sink_node_id="0" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
12
|
+
<link id="1" source_node_id="0" sink_node_id="1" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
13
|
+
<link id="2" source_node_id="1" sink_node_id="2" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
14
|
+
<link id="3" source_node_id="2" sink_node_id="4" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
15
|
+
</links>
|
16
|
+
<annotations>
|
17
|
+
<text id="0" type="text/plain" rect="(68.0, 8.0, 740.0, 86.0)" font-family="Sans" font-size="16">Context: we want to modify an NXtomo in order to append some (raw) darks / flats to it.
|
18
|
+
Then those raw darks and flats will be used for reduced darks / flats calculation.
|
19
|
+
|
20
|
+
warning: reduced darks and flats are usually mean / median of a serie of darks / flats. when raw darks and flats are raw frame before mean / median 'reduction'</text>
|
21
|
+
<text id="1" type="text/plain" rect="(65.0, 360.0, 150.0, 88.0)" font-family="Sans" font-size="16">NXtomo to be patched
|
22
|
+
Step 3 : process NXtomo</text>
|
23
|
+
<text id="2" type="text/plain" rect="(249.0, 355.0, 220.0, 135.0)" font-family="Sans" font-size="16">step1: define frame series to be ignored (here darks and flats series to avoid conflict with the one added by the dark / flat patch)</text>
|
24
|
+
<arrow id="3" start="(130.0, 345.0)" end="(131.0, 286.0)" fill="#C1272D" />
|
25
|
+
<arrow id="4" start="(337.0, 345.0)" end="(336.99999999999994, 283.0)" fill="#C1272D" />
|
26
|
+
<text id="5" type="text/plain" rect="(912.0, 350.0, 233.0, 158.0)" font-family="Sans" font-size="16">result: NXtomo with patched frame (step 2) and reduced darks and flats to be used for reconstruction</text>
|
27
|
+
<arrow id="6" start="(981.9999999999999, 332.0)" end="(982.9999999999999, 278.0)" fill="#C1272D" />
|
28
|
+
<text id="7" type="text/plain" rect="(700.0, 349.0, 183.0, 126.0)" font-family="Sans" font-size="16">standard darks / flats reduction (but taking into account patched darks / flats frames)</text>
|
29
|
+
<arrow id="8" start="(780.0000000000001, 342.0)" end="(782.0000000000001, 296.0)" fill="#C1272D" />
|
30
|
+
<text id="9" type="text/plain" rect="(506.0, 347.0, 150.0, 145.0)" font-family="Sans" font-size="16">step2: provide series of darks / flats from other(s) NXtomo to be added to the `NXtomo to be patched`</text>
|
31
|
+
<arrow id="10" start="(574.0, 338.0)" end="(573.0, 281.0)" fill="#C1272D" />
|
32
|
+
</annotations>
|
33
|
+
<thumbnail />
|
34
|
+
<node_properties>
|
35
|
+
<properties node_id="0" format="literal">{'_ewoks_default_inputs': {'operations': {}}, '_ewoks_execinfo': {}, '_ewoks_varinfo': {}, 'controlAreaVisible': True, 'default_inputs': {}, 'savedWidgetGeometry': b'\x01\xd9\xd0\xcb\x00\x03\x00\x00\x00\x00\x07\xe6\x00\x00\x01\x18\x00\x00\n/\x00\x00\x03-\x00\x00\x07\xeb\x00\x00\x015\x00\x00\n*\x00\x00\x03(\x00\x00\x00\x01\x00\x00\x00\x00\x07\x7f\x00\x00\x07\xeb\x00\x00\x015\x00\x00\n*\x00\x00\x03(', '__version__': 1}</properties>
|
36
|
+
<properties node_id="1" format="literal">{'_urlsSetting': {}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
37
|
+
<properties node_id="2" format="literal">{'_ewoks_default_inputs': {'data': None, 'dark_ref_params': {'DOWHEN': 'before', 'DARKCAL': 'mean', 'DARKOVE': 0, 'DARKRMV': 0, 'DKFILE': 'darkend[0-9]{3,4}', 'REFSCAL': 'median', 'REFSOVE': 0, 'REFSRMV': 0, 'RFFILE': 'ref*.*[0-9]{3,4}_[0-9]{3,4}'}}, 'controlAreaVisible': True, 'savedWidgetGeometry': b'\x01\xd9\xd0\xcb\x00\x03\x00\x00\x00\x00\x06\x9b\x00\x00\x02K\x00\x00\n\x95\x00\x00\x04\x8f\x00\x00\x06\xa0\x00\x00\x02h\x00\x00\n\x90\x00\x00\x04\x8a\x00\x00\x00\x01\x00\x00\x00\x00\x07\x7f\x00\x00\x06\xa0\x00\x00\x02h\x00\x00\n\x90\x00\x00\x04\x8a', '__version__': 1}</properties>
|
38
|
+
<properties node_id="3" format="literal">{'_scanIDs': [], 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
39
|
+
<properties node_id="4" format="literal">{'_scanIDs': [], 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
40
|
+
</node_properties>
|
41
|
+
<session_state>
|
42
|
+
<window_groups />
|
43
|
+
</session_state>
|
44
|
+
</scheme>
|
@@ -0,0 +1,55 @@
|
|
1
|
+
<?xml version='1.0' encoding='utf-8'?>
|
2
|
+
<scheme version="2.0" title="darks and flats copy - method 1" description="">
|
3
|
+
<nodes>
|
4
|
+
<node id="0" name="scan selector" qualified_name="orangecontrib.tomwer.widgets.control.DataSelectorOW.DataSelectorOW" project_name="tomwer" version="" title="scan selector" position="(-519.0, -209.0)" />
|
5
|
+
<node id="1" name="image-key-upgrader" qualified_name="orangecontrib.tomwer.widgets.edit.ImageKeyUpgraderOW.ImageKeyUpgraderOW" project_name="tomwer" version="" title="image-key-upgrader" position="(-293.0, -209.0)" />
|
6
|
+
<node id="2" name="reduced darks and flats" qualified_name="orangecontrib.tomwer.widgets.reconstruction.DarkRefAndCopyOW.DarkRefAndCopyOW" project_name="tomwer" version="" title="reduced darks and flats" position="(65.0, -226.0)" />
|
7
|
+
<node id="3" name="single tomo obj" qualified_name="orangecontrib.tomwer.widgets.control.SingleTomoObjOW.SingleTomoObjOW" project_name="tomwer" version="" title="scan with darks to be used" position="(-79.0, -439.0)" />
|
8
|
+
<node id="4" name="single tomo obj" qualified_name="orangecontrib.tomwer.widgets.control.SingleTomoObjOW.SingleTomoObjOW" project_name="tomwer" version="" title="scan with reduced flats to be used" position="(-191.0, -335.0)" />
|
9
|
+
<node id="5" name="scan selector" qualified_name="orangecontrib.tomwer.widgets.control.DataSelectorOW.DataSelectorOW" project_name="tomwer" version="" title="scan selector (1)" position="(286.0, -227.0)" />
|
10
|
+
</nodes>
|
11
|
+
<links>
|
12
|
+
<link id="0" source_node_id="0" sink_node_id="1" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
13
|
+
<link id="1" source_node_id="1" sink_node_id="2" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
14
|
+
<link id="2" source_node_id="3" sink_node_id="2" source_channel="reduced dark(s)" sink_channel="reduced dark(s)" enabled="true" source_channel_id="reduced_darks" sink_channel_id="reduced_darks" />
|
15
|
+
<link id="3" source_node_id="4" sink_node_id="2" source_channel="reduced flat(s)" sink_channel="reduced flat(s)" enabled="true" source_channel_id="reduced_flats" sink_channel_id="reduced_flats" />
|
16
|
+
<link id="4" source_node_id="2" sink_node_id="5" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
17
|
+
</links>
|
18
|
+
<annotations>
|
19
|
+
<text id="0" type="text/plain" rect="(-597.0, -79.0, 150.0, 126.0)" font-family="Sans" font-size="16">step2: provide scans for which we need to copy reduced darks and flats</text>
|
20
|
+
<arrow id="1" start="(-522.0, -87.0)" end="(-523.0, -151.0)" fill="#C1272D" />
|
21
|
+
<text id="2" type="text/plain" rect="(-379.0, -87.0, 236.0, 111.0)" font-family="Sans" font-size="16">invalid any existing darks or flats frames (else reduced darks and flats will use them instead of making the copy)</text>
|
22
|
+
<arrow id="3" start="(-293.0, -97.0)" end="(-290.0, -158.0)" fill="#C1272D" />
|
23
|
+
<text id="4" type="text/plain" rect="(-71.0, -96.0, 270.0, 80.0)" font-family="Sans" font-size="16">will copy reduced darks / flats to `dataset_{darks|flats}.hdf5` to be used for reconstruction</text>
|
24
|
+
<arrow id="5" start="(69.99999999999997, -105.0)" end="(69.99999999999997, -156.0)" fill="#C1272D" />
|
25
|
+
<text id="6" type="text/plain" rect="(-390.0, -471.0, 150.0, 107.0)" font-family="Sans" font-size="16">step1: provide scan with already computed darks and flats</text>
|
26
|
+
<arrow id="7" start="(-236.0, -419.0)" end="(-130.0, -428.0)" fill="#C1272D" />
|
27
|
+
<arrow id="8" start="(-277.0, -357.00000000000006)" end="(-228.00000000000003, -333.00000000000006)" fill="#C1272D" />
|
28
|
+
<text id="9" type="text/plain" rect="(241.0, -96.0, 150.0, 88.0)" font-family="Sans" font-size="16">result: scans with copied reduced darks / flats</text>
|
29
|
+
<text id="10" type="text/plain" rect="(-623.0, -603.0, 932.0, 145.0)" font-family="Sans" font-size="16">Context: on this workflow we want to copy reduced flats / darks from a dataset to others.
|
30
|
+
This one of the various way to do this.
|
31
|
+
</text>
|
32
|
+
<text id="11" type="text/plain" rect="(-593.0, 94.0, 919.0, 84.0)" font-family="Sans" font-size="16">Note: You can also replace the two upper widgets (providing reduced darks and flats) by a python script providing a python dictionnary.
|
33
|
+
* Key should be position of the flat / dark in the sequence (so 0 if at the beginning for example)
|
34
|
+
* Value is the 2D numpy array with mean / median /xxx of the darks and flats serie</text>
|
35
|
+
<arrow id="12" start="(288.0, -105.0)" end="(286.0, -165.0)" fill="#C1272D" />
|
36
|
+
</annotations>
|
37
|
+
<thumbnail />
|
38
|
+
<node_properties>
|
39
|
+
<properties node_id="0" format="literal">{'_scanIDs': [], 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
40
|
+
<properties node_id="1" format="pickle">gASVLwEAAAAAAAB9lCiMFV9ld29rc19kZWZhdWx0X2lucHV0c5R9lIwKb3BlcmF0aW9uc5R9lCiM
|
41
|
+
G3RvbW9zY2FuLmVzcmYuc2Nhbi5oZGY1c2NhbpSMCEltYWdlS2V5lJOUSwKFlFKUaAdLA4WUUpRo
|
42
|
+
B0sBhZRSlGgLdXOMD19ld29rc19leGVjaW5mb5R9lIwOX2V3b2tzX3ZhcmluZm+UfZSMEmNvbnRy
|
43
|
+
b2xBcmVhVmlzaWJsZZSIjA5kZWZhdWx0X2lucHV0c5R9lIwTc2F2ZWRXaWRnZXRHZW9tZXRyeZRD
|
44
|
+
QgHZ0MsAAwAAAAAH5gAAARgAAAovAAADLQAAB+sAAAE1AAAKKgAAAygAAAABAAAAAAd/AAAH6wAA
|
45
|
+
ATUAAAoqAAADKJSMC19fdmVyc2lvbl9flEsBdS4=
|
46
|
+
</properties>
|
47
|
+
<properties node_id="2" format="literal">{'_ewoks_default_inputs': {'data': None, 'dark_ref_params': None}, 'controlAreaVisible': True, 'savedWidgetGeometry': b'\x01\xd9\xd0\xcb\x00\x03\x00\x00\x00\x00\x07\x0e\x00\x00\x015\x00\x00\x0b\x08\x00\x00\x03\x10\x00\x00\x07\x13\x00\x00\x01R\x00\x00\x0b\x03\x00\x00\x03\x0b\x00\x00\x00\x01\x00\x00\x00\x00\x07\x7f\x00\x00\x07\x13\x00\x00\x01R\x00\x00\x0b\x03\x00\x00\x03\x0b', '__version__': 1}</properties>
|
48
|
+
<properties node_id="3" format="literal">{'_tomo_obj_setting': '', 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
49
|
+
<properties node_id="4" format="literal">{'_tomo_obj_setting': '', 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
50
|
+
<properties node_id="5" format="literal">{'_scanIDs': [], 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
51
|
+
</node_properties>
|
52
|
+
<session_state>
|
53
|
+
<window_groups />
|
54
|
+
</session_state>
|
55
|
+
</scheme>
|
@@ -0,0 +1,48 @@
|
|
1
|
+
<?xml version='1.0' encoding='utf-8'?>
|
2
|
+
<scheme version="2.0" title="darks and flats copy - method 2" description="">
|
3
|
+
<nodes>
|
4
|
+
<node id="0" name="scan selector" qualified_name="orangecontrib.tomwer.widgets.control.DataSelectorOW.DataSelectorOW" project_name="tomwer" version="" title="scan selector" position="(-519.0, -209.0)" />
|
5
|
+
<node id="1" name="image-key-upgrader" qualified_name="orangecontrib.tomwer.widgets.edit.ImageKeyUpgraderOW.ImageKeyUpgraderOW" project_name="tomwer" version="" title="image-key-upgrader" position="(-293.0, -209.0)" />
|
6
|
+
<node id="2" name="reduced darks and flats" qualified_name="orangecontrib.tomwer.widgets.reconstruction.DarkRefAndCopyOW.DarkRefAndCopyOW" project_name="tomwer" version="" title="reduced darks and flats" position="(62.0, -212.0)" />
|
7
|
+
<node id="3" name="scan selector" qualified_name="orangecontrib.tomwer.widgets.control.DataSelectorOW.DataSelectorOW" project_name="tomwer" version="" title="scan selector (1)" position="(291.0, -211.0)" />
|
8
|
+
</nodes>
|
9
|
+
<links>
|
10
|
+
<link id="0" source_node_id="0" sink_node_id="1" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
11
|
+
<link id="1" source_node_id="1" sink_node_id="2" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
12
|
+
<link id="2" source_node_id="2" sink_node_id="3" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
13
|
+
</links>
|
14
|
+
<annotations>
|
15
|
+
<text id="0" type="text/plain" rect="(-597.0, -79.0, 150.0, 126.0)" font-family="Sans" font-size="16">step2: provide scans for which we need to copy reduced darks and flats</text>
|
16
|
+
<arrow id="1" start="(-522.0, -87.0)" end="(-523.0, -151.0)" fill="#C1272D" />
|
17
|
+
<text id="2" type="text/plain" rect="(-379.0, -87.0, 236.0, 111.0)" font-family="Sans" font-size="16">invalid any existing darks or flats frames (else reduced darks and flats will use them instead of making the copy)</text>
|
18
|
+
<arrow id="3" start="(-293.0, -97.0)" end="(-290.0, -158.0)" fill="#C1272D" />
|
19
|
+
<text id="4" type="text/plain" rect="(-70.0, -81.0, 270.0, 80.0)" font-family="Sans" font-size="16">will copy reduced darks / flats to `dataset_{darks|flats}.hdf5` to be used for reconstruction</text>
|
20
|
+
<arrow id="5" start="(61.99999999999998, -91.0)" end="(61.99999999999998, -142.0)" fill="#C1272D" />
|
21
|
+
<text id="6" type="text/plain" rect="(-141.0, -427.0, 464.0, 85.0)" font-family="Sans" font-size="16">step1: provide reduced darks and flats from the 'copy' tab,
|
22
|
+
unselecting auto and setting them through `select darks url` and `select flats url`</text>
|
23
|
+
<arrow id="7" start="(57.0, -334.0)" end="(58.99999999999997, -259.00000000000006)" fill="#C1272D" />
|
24
|
+
<text id="8" type="text/plain" rect="(241.0, -94.0, 150.0, 88.0)" font-family="Sans" font-size="16">result: scans with copied reduced darks / flats</text>
|
25
|
+
<text id="9" type="text/plain" rect="(-601.0, -590.0, 932.0, 68.0)" font-family="Sans" font-size="16">Context: on this workflow we want to copy reduced flats / darks from a dataset to others.
|
26
|
+
This one of the various way to do this.
|
27
|
+
</text>
|
28
|
+
<text id="10" type="text/plain" rect="(-593.0, 94.0, 919.0, 84.0)" font-family="Sans" font-size="16">Note: reduced darks / flats can be saved to disk from another python script using the `silx.io.dictdump` dicttoh5 function.
|
29
|
+
Reduced darks and flats are dictionary with index in the sequence as key (so index==0 if the dark / flat serie is done at the beginning) and the reduced darks / flats as value (2D numpy array) </text>
|
30
|
+
<arrow id="11" start="(291.0, -109.0)" end="(290.0, -158.0)" fill="#C1272D" />
|
31
|
+
</annotations>
|
32
|
+
<thumbnail />
|
33
|
+
<node_properties>
|
34
|
+
<properties node_id="0" format="literal">{'_scanIDs': [], 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
35
|
+
<properties node_id="1" format="pickle">gASVLwEAAAAAAAB9lCiMFV9ld29rc19kZWZhdWx0X2lucHV0c5R9lIwKb3BlcmF0aW9uc5R9lCiM
|
36
|
+
G3RvbW9zY2FuLmVzcmYuc2Nhbi5oZGY1c2NhbpSMCEltYWdlS2V5lJOUSwKFlFKUaAdLA4WUUpRo
|
37
|
+
B0sBhZRSlGgLdXOMD19ld29rc19leGVjaW5mb5R9lIwOX2V3b2tzX3ZhcmluZm+UfZSMEmNvbnRy
|
38
|
+
b2xBcmVhVmlzaWJsZZSIjA5kZWZhdWx0X2lucHV0c5R9lIwTc2F2ZWRXaWRnZXRHZW9tZXRyeZRD
|
39
|
+
QgHZ0MsAAwAAAAAH5gAAARgAAAovAAADLQAAB+sAAAE1AAAKKgAAAygAAAABAAAAAAd/AAAH6wAA
|
40
|
+
ATUAAAoqAAADKJSMC19fdmVyc2lvbl9flEsBdS4=
|
41
|
+
</properties>
|
42
|
+
<properties node_id="2" format="literal">{'_ewoks_default_inputs': {'data': None, 'dark_ref_params': {'DOWHEN': 'before', 'DARKCAL': 'mean', 'DARKOVE': 0, 'DARKRMV': 0, 'DKFILE': 'darkend[0-9]{3,4}', 'REFSCAL': 'median', 'REFSOVE': 0, 'REFSRMV': 0, 'RFFILE': 'ref*.*[0-9]{3,4}_[0-9]{3,4}'}}, 'controlAreaVisible': True, 'savedWidgetGeometry': b'\x01\xd9\xd0\xcb\x00\x03\x00\x00\x00\x00\x06\x9b\x00\x00\x02K\x00\x00\n\x95\x00\x00\x04\x8f\x00\x00\x06\xa0\x00\x00\x02h\x00\x00\n\x90\x00\x00\x04\x8a\x00\x00\x00\x01\x00\x00\x00\x00\x07\x7f\x00\x00\x06\xa0\x00\x00\x02h\x00\x00\n\x90\x00\x00\x04\x8a', '__version__': 1}</properties>
|
43
|
+
<properties node_id="3" format="literal">{'_scanIDs': [], 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
44
|
+
</node_properties>
|
45
|
+
<session_state>
|
46
|
+
<window_groups />
|
47
|
+
</session_state>
|
48
|
+
</scheme>
|
@@ -0,0 +1,40 @@
|
|
1
|
+
<?xml version='1.0' encoding='utf-8'?>
|
2
|
+
<scheme version="2.0" title="default cor search" description="">
|
3
|
+
<nodes>
|
4
|
+
<node id="0" name="scan selector" qualified_name="orangecontrib.tomwer.widgets.control.DataSelectorOW.DataSelectorOW" project_name="tomwer" version="" title="scan selector" position="(150, 150)" />
|
5
|
+
<node id="1" name="reduced darks and flats" qualified_name="orangecontrib.tomwer.widgets.reconstruction.DarkRefAndCopyOW.DarkRefAndCopyOW" project_name="tomwer" version="" title="reduced darks and flats" position="(319.0, 189.0)" />
|
6
|
+
<node id="2" name="default center of rotation" qualified_name="orangecontrib.tomwer.widgets.reconstruction.AxisOW.AxisOW" project_name="tomwer" version="" title="default center of rotation" position="(469.0, 237.0)" />
|
7
|
+
<node id="3" name="nabu slice reconstruction" qualified_name="orangecontrib.tomwer.widgets.reconstruction.NabuOW.NabuOW" project_name="tomwer" version="" title="nabu slice reconstruction" position="(659.0, 325.0)" />
|
8
|
+
<node id="4" name="data viewer" qualified_name="orangecontrib.tomwer.widgets.visualization.DataViewerOW.DataViewerOW" project_name="tomwer" version="" title="data viewer" position="(818.0, 362.0)" />
|
9
|
+
</nodes>
|
10
|
+
<links>
|
11
|
+
<link id="0" source_node_id="0" sink_node_id="1" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
12
|
+
<link id="1" source_node_id="1" sink_node_id="2" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
13
|
+
<link id="2" source_node_id="3" sink_node_id="4" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
14
|
+
<link id="3" source_node_id="2" sink_node_id="3" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
15
|
+
</links>
|
16
|
+
<annotations>
|
17
|
+
<text id="0" type="text/plain" rect="(223.0, 32.0, 150.0, 26.0)" font-family="Ubuntu" font-size="16">provide dataset</text>
|
18
|
+
<arrow id="1" start="(210.0, 73.0)" end="(159.0, 116.0)" fill="#C1272D" />
|
19
|
+
<text id="2" type="text/plain" rect="(157.0, 304.0, 150.0, 49.0)" font-family="Ubuntu" font-size="16">compute reduced darks and flats</text>
|
20
|
+
<arrow id="3" start="(232.0, 299.0)" end="(290.0, 249.0)" fill="#C1272D" />
|
21
|
+
<arrow id="4" start="(550.0, 149.0)" end="(484.0, 201.0)" fill="#C1272D" />
|
22
|
+
<text id="5" type="text/plain" rect="(552.0, 76.0, 281.0, 72.0)" font-family="Ubuntu" font-size="16">compute center of rotation
|
23
|
+
manually or using one of the numerous existing algorithms</text>
|
24
|
+
<arrow id="6" start="(754.0, 224.00000000000003)" end="(695.0, 277.0)" fill="#C1272D" />
|
25
|
+
<text id="7" type="text/plain" rect="(783.0, 183.0, 150.0, 50.0)" font-family="Ubuntu" font-size="16">reconstruct one or several slices</text>
|
26
|
+
<arrow id="8" start="(739.0, 486.0)" end="(782.0, 429.0)" fill="#C1272D" />
|
27
|
+
<text id="9" type="text/plain" rect="(709.2222222222222, 488.55555555555554, 150.0, 88.0)" font-family="Ubuntu" font-size="16">browse reconstructed slices and browse dataset</text>
|
28
|
+
</annotations>
|
29
|
+
<thumbnail />
|
30
|
+
<node_properties>
|
31
|
+
<properties node_id="0" format="literal">{'_scanIDs': [], 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
32
|
+
<properties node_id="1" format="literal">{'_ewoks_default_inputs': {'data': None, 'dark_ref_params': None}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
33
|
+
<properties node_id="2" format="literal">{'_ewoks_default_inputs': {'data': None, 'axis_params': {'MODE': 'manual', 'POSITION_VALUE': None, 'CALC_INPUT_TYPE': 'transmission_nopag', 'ANGLE_MODE': '0-180', 'USE_SINOGRAM': False, 'SINOGRAM_LINE': '', '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': 0.0, 'PADDING_MODE': 'edge', 'FLIP_LR': True, 'COMPOSITE_OPTS': {'theta': 10, 'n_subsampling_y': 10, 'oversampling': 4, 'take_log': True, 'near_pos': 0, 'near_width': 20}, 'SIDE': 'all', 'COR_OPTIONS': ''}, 'gui': {'mode_is_lock': False, 'value_is_lock': False, 'auto_update_estimated_cor': True}}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
34
|
+
<properties node_id="3" format="literal">{'_ewoks_default_inputs': {'data': None, 'nabu_params': None}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
35
|
+
<properties node_id="4" format="literal">{'_viewer_config': {}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
36
|
+
</node_properties>
|
37
|
+
<session_state>
|
38
|
+
<window_groups />
|
39
|
+
</session_state>
|
40
|
+
</scheme>
|
@@ -0,0 +1,50 @@
|
|
1
|
+
<?xml version='1.0' encoding='utf-8'?>
|
2
|
+
<scheme version="2.0" title="Python script hello world" description="">
|
3
|
+
<nodes>
|
4
|
+
<node id="0" name="single tomo obj" qualified_name="orangecontrib.tomwer.widgets.control.SingleTomoObjOW.SingleTomoObjOW" project_name="tomwer" version="" title="single tomo obj" position="(215.0, 171.0)" />
|
5
|
+
<node id="1" name="Python Script" qualified_name="orangecontrib.tomwer.widgets.other.PythonScriptOW.OWPythonScript" project_name="tomwer" version="" title="Python Script" position="(395.0, 238.0)" />
|
6
|
+
</nodes>
|
7
|
+
<links>
|
8
|
+
<link id="0" source_node_id="0" sink_node_id="1" source_channel="tomo_obj" sink_channel="data" enabled="true" source_channel_id="tomo_obj" sink_channel_id="data" />
|
9
|
+
</links>
|
10
|
+
<annotations>
|
11
|
+
<arrow id="0" start="(155.0, 343.0)" end="(199.0, 238.0)" fill="#C1272D" />
|
12
|
+
<text id="1" type="text/plain" rect="(22.0, 370.0, 211.0, 103.0)" font-family="Cantarell" font-size="16">1: provide a scan either by:
|
13
|
+
* using the 'select button'
|
14
|
+
* copy-paste a file containing a NXtomo to the interface</text>
|
15
|
+
<arrow id="2" start="(369.0, 406.0)" end="(374.0, 308.0)" fill="#C1272D" />
|
16
|
+
<text id="3" type="text/plain" rect="(329.0, 414.0, 150.0, 70.0)" font-family="Cantarell" font-size="16">2: print some information about this scan</text>
|
17
|
+
</annotations>
|
18
|
+
<thumbnail />
|
19
|
+
<node_properties>
|
20
|
+
<properties node_id="0" format="literal">{'_tomo_obj_setting': '', 'controlAreaVisible': True, 'savedWidgetGeometry': b'\x01\xd9\xd0\xcb\x00\x03\x00\x00\x00\x00\x08C\x00\x00\x02=\x00\x00\r\xb3\x00\x00\x02\xd8\x00\x00\x08C\x00\x00\x02b\x00\x00\r\xb3\x00\x00\x02\xd8\x00\x00\x00\x01\x00\x00\x00\x00\x07\x80\x00\x00\x08C\x00\x00\x02b\x00\x00\r\xb3\x00\x00\x02\xd8', '__version__': 1}</properties>
|
21
|
+
<properties node_id="1" format="pickle">gASVKQUAAAAAAAB9lCiMEmNvbnRyb2xBcmVhVmlzaWJsZZSIjBJjdXJyZW50U2NyaXB0SW5kZXiU
|
22
|
+
SwCMEWxpYnJhcnlMaXN0U291cmNllF2UjDFvcmFuZ2Vjb250cmliLnRvbXdlci53aWRnZXRzLm90
|
23
|
+
aGVyLlB5dGhvblNjcmlwdE9XlIwGU2NyaXB0lJOUKYGUfZQojARuYW1llIwLSGVsbG8gd29ybGSU
|
24
|
+
jAZzY3JpcHSUWOgBAABmcm9tIHRvbXdlci5jb3JlLnNjYW4uaGRmNXNjYW4gaW1wb3J0IEhERjVU
|
25
|
+
b21vU2Nhbgpmcm9tIHRvbXdlci5jb3JlLnNjYW4uZWRmc2NhbiBpbXBvcnQgRURGVG9tb1NjYW4K
|
26
|
+
c2NhbiA9IGluX2RhdGEKaWYgaXNpbnN0YW5jZShzY2FuLCBIREY1VG9tb1NjYW4pOgogICAgcHJp
|
27
|
+
bnQoInNjYW4gbWFzdGVyIGZpbGUgaXMiLCBzY2FuLm1hc3Rlcl9maWxlKQplbHNlOgogICAgcHJp
|
28
|
+
bnQoInNjYW4gZGlyZWN0b3J5IGlzIiwgc2Nhbi5wYXRoKQoKcHJpbnQoZiJzY2FuIGhhcyB7bGVu
|
29
|
+
KHNjYW4ucHJvamVjdGlvbnMpfSBwcm9qZWN0aW9ucywge2xlbihzY2FuLmRhcmtzKX0gZGFya3Mg
|
30
|
+
YW5kIHtsZW4oc2Nhbi5mbGF0cyl9IGZsYXRzIikKCnByaW50KGYic2NhbiBlbmVyZ3kgaXMge3Nj
|
31
|
+
YW4uZW5lcmd5fSwgcm90YXRpb24gYW5nbGUgZ29lcyBmcm9tIHttaW4oc2Nhbi5yb3RhdGlvbl9h
|
32
|
+
bmdsZSl9IHRvIHttYXgoc2Nhbi5yb3RhdGlvbl9hbmdsZSl9IGRlZ3JlZXMiKZSMBWZsYWdzlEsA
|
33
|
+
jAhmaWxlbmFtZZROdWJhjBNzYXZlZFdpZGdldEdlb21ldHJ5lENCAdnQywADAAAAAAhKAAAA0wAA
|
34
|
+
DWYAAARRAAAISgAAAPgAAA1mAAAEUQAAAAEAAAAAB4AAAAhKAAAA+AAADWYAAARRlIwKc2NyaXB0
|
35
|
+
VGV4dJRY6AEAAGZyb20gdG9td2VyLmNvcmUuc2Nhbi5oZGY1c2NhbiBpbXBvcnQgSERGNVRvbW9T
|
36
|
+
Y2FuCmZyb20gdG9td2VyLmNvcmUuc2Nhbi5lZGZzY2FuIGltcG9ydCBFREZUb21vU2NhbgpzY2Fu
|
37
|
+
ID0gaW5fZGF0YQppZiBpc2luc3RhbmNlKHNjYW4sIEhERjVUb21vU2Nhbik6CiAgICBwcmludCgi
|
38
|
+
c2NhbiBtYXN0ZXIgZmlsZSBpcyIsIHNjYW4ubWFzdGVyX2ZpbGUpCmVsc2U6CiAgICBwcmludCgi
|
39
|
+
c2NhbiBkaXJlY3RvcnkgaXMiLCBzY2FuLnBhdGgpCgpwcmludChmInNjYW4gaGFzIHtsZW4oc2Nh
|
40
|
+
bi5wcm9qZWN0aW9ucyl9IHByb2plY3Rpb25zLCB7bGVuKHNjYW4uZGFya3MpfSBkYXJrcyBhbmQg
|
41
|
+
e2xlbihzY2FuLmZsYXRzKX0gZmxhdHMiKQoKcHJpbnQoZiJzY2FuIGVuZXJneSBpcyB7c2Nhbi5l
|
42
|
+
bmVyZ3l9LCByb3RhdGlvbiBhbmdsZSBnb2VzIGZyb20ge21pbihzY2FuLnJvdGF0aW9uX2FuZ2xl
|
43
|
+
KX0gdG8ge21heChzY2FuLnJvdGF0aW9uX2FuZ2xlKX0gZGVncmVlcyIplIwNc3BsaXR0ZXJTdGF0
|
44
|
+
ZZROjAtfX3ZlcnNpb25fX5RLAXUu
|
45
|
+
</properties>
|
46
|
+
</node_properties>
|
47
|
+
<session_state>
|
48
|
+
<window_groups />
|
49
|
+
</session_state>
|
50
|
+
</scheme>
|
@@ -0,0 +1,50 @@
|
|
1
|
+
<?xml version='1.0' encoding='utf-8'?>
|
2
|
+
<scheme version="2.0" title="simple slice reconstruction on slurm" description="">
|
3
|
+
<nodes>
|
4
|
+
<node id="0" name="scan selector" qualified_name="orangecontrib.tomwer.widgets.control.DataSelectorOW.DataSelectorOW" project_name="tomwer" version="" title="scan selector" position="(150, 150)" />
|
5
|
+
<node id="1" name="reduced darks and flats" qualified_name="orangecontrib.tomwer.widgets.reconstruction.DarkRefAndCopyOW.DarkRefAndCopyOW" project_name="tomwer" version="" title="reduced darks and flats" position="(324.0, 183.0)" />
|
6
|
+
<node id="2" name="default center of rotation" qualified_name="orangecontrib.tomwer.widgets.reconstruction.AxisOW.AxisOW" project_name="tomwer" version="" title="default center of rotation" position="(490.0, 218.0)" />
|
7
|
+
<node id="3" name="nabu slice reconstruction" qualified_name="orangecontrib.tomwer.widgets.reconstruction.NabuOW.NabuOW" project_name="tomwer" version="" title="nabu slice reconstruction" position="(649.0, 261.0)" />
|
8
|
+
<node id="4" name="data viewer" qualified_name="orangecontrib.tomwer.widgets.visualization.DataViewerOW.DataViewerOW" project_name="tomwer" version="" title="data viewer" position="(945.0, 368.0)" />
|
9
|
+
<node id="5" name="slurm cluster" qualified_name="orangecontrib.tomwer.widgets.cluster.SlurmClusterOW.SlurmClusterOW" project_name="tomwer" version="" title="slurm cluster" position="(412.0, 387.0)" />
|
10
|
+
<node id="6" name="future supervisor" qualified_name="orangecontrib.tomwer.widgets.cluster.FutureSupervisorOW.FutureSupervisorOW" project_name="tomwer" version="" title="future supervisor" position="(803.5, 315.5)" />
|
11
|
+
</nodes>
|
12
|
+
<links>
|
13
|
+
<link id="0" source_node_id="0" sink_node_id="1" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
14
|
+
<link id="1" source_node_id="1" sink_node_id="2" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
15
|
+
<link id="2" source_node_id="2" sink_node_id="3" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
16
|
+
<link id="3" source_node_id="5" sink_node_id="3" source_channel="cluster_config" sink_channel="cluster_config" enabled="true" source_channel_id="data_out" sink_channel_id="cluster_in" />
|
17
|
+
<link id="4" source_node_id="3" sink_node_id="6" source_channel="future_tomo_obj" sink_channel="future_tomo_obj" enabled="true" source_channel_id="future_out" sink_channel_id="future_in" />
|
18
|
+
<link id="5" source_node_id="6" sink_node_id="4" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
19
|
+
</links>
|
20
|
+
<annotations>
|
21
|
+
<arrow id="0" start="(267.0, 56.0)" end="(194.0, 105.0)" fill="#C1272D" />
|
22
|
+
<arrow id="1" start="(248.0, 298.0)" end="(292.0, 239.0)" fill="#C1272D" />
|
23
|
+
<arrow id="2" start="(576.0, 108.0)" end="(521.0, 168.0)" fill="#C1272D" />
|
24
|
+
<arrow id="3" start="(647.0, 420.0)" end="(649.0, 328.0)" fill="#C1272D" />
|
25
|
+
<arrow id="4" start="(1013.0, 272.0)" end="(951.0, 322.0)" fill="#C1272D" />
|
26
|
+
<text id="5" type="text/plain" rect="(275.0, 19.0, 150.0, 26.0)" font-family="Ubuntu" font-size="16">provide dataset</text>
|
27
|
+
<text id="6" type="text/plain" rect="(187.0, 309.0, 150.0, 26.0)" font-family="Ubuntu" font-size="16">compute reduced darks and flats</text>
|
28
|
+
<text id="7" type="text/plain" rect="(596.0, 53.0, 150.0, 26.0)" font-family="Ubuntu" font-size="16">compute center of rotation</text>
|
29
|
+
<text id="8" type="text/plain" rect="(557.0, 428.0, 214.0, 94.0)" font-family="Ubuntu" font-size="16">slice reconstruction will be done on slurm as it has a 'slurm cluster' input</text>
|
30
|
+
<text id="9" type="text/plain" rect="(979.4444444444443, 459.11111111111114, 150.0, 88.0)" font-family="Ubuntu" font-size="16">display reconstructed slices and browse dataset</text>
|
31
|
+
<arrow id="10" start="(256.0, 528.0)" end="(341.0, 433.0)" fill="#C1272D" />
|
32
|
+
<text id="11" type="text/plain" rect="(126.0, 534.0, 267.0, 77.0)" font-family="Cantarell" font-size="16">Define the slurm partition to be used for the reconstruction.
|
33
|
+
Warning: you must ask for one GPU</text>
|
34
|
+
<arrow id="12" start="(854.0, 176.0)" end="(817.0, 273.0)" fill="#C1272D" />
|
35
|
+
<text id="13" type="text/plain" rect="(859.0, 112.0, 219.0, 50.0)" font-family="Cantarell" font-size="16">wait for reconstruction to be done over slurm</text>
|
36
|
+
</annotations>
|
37
|
+
<thumbnail />
|
38
|
+
<node_properties>
|
39
|
+
<properties node_id="0" format="literal">{'_scanIDs': [], 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
40
|
+
<properties node_id="1" format="literal">{'_ewoks_default_inputs': {'data': None, 'dark_ref_params': None}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
41
|
+
<properties node_id="2" format="literal">{'_ewoks_default_inputs': {'data': None, 'axis_params': {'MODE': 'manual', 'POSITION_VALUE': None, 'CALC_INPUT_TYPE': 'transmission_nopag', 'ANGLE_MODE': '0-180', 'USE_SINOGRAM': False, 'SINOGRAM_LINE': '', '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': 0.0, 'PADDING_MODE': 'edge', 'FLIP_LR': True, 'COMPOSITE_OPTS': {'theta': 10, 'n_subsampling_y': 10, 'oversampling': 4, 'take_log': True, 'near_pos': 0, 'near_width': 20}, 'SIDE': 'all', 'COR_OPTIONS': ''}, 'gui': {'mode_is_lock': False, 'value_is_lock': False, 'auto_update_estimated_cor': True}}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
42
|
+
<properties node_id="3" format="literal">{'_ewoks_default_inputs': {'data': None, 'nabu_params': None}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
43
|
+
<properties node_id="4" format="literal">{'_viewer_config': {}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
44
|
+
<properties node_id="5" format="literal">{'_ewoks_default_inputs': {}, 'controlAreaVisible': True, 'savedWidgetGeometry': b'\x01\xd9\xd0\xcb\x00\x03\x00\x00\x00\x00\nH\x00\x00\x01l\x00\x00\x0c#\x00\x00\x02\xce\x00\x00\nH\x00\x00\x01\x91\x00\x00\x0c#\x00\x00\x02\xce\x00\x00\x00\x01\x00\x00\x00\x00\x07\x80\x00\x00\nH\x00\x00\x01\x91\x00\x00\x0c#\x00\x00\x02\xce', '__version__': 1}</properties>
|
45
|
+
<properties node_id="6" format="literal">{'_ewoks_default_inputs': {}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
46
|
+
</node_properties>
|
47
|
+
<session_state>
|
48
|
+
<window_groups />
|
49
|
+
</session_state>
|
50
|
+
</scheme>
|