tomwer 1.2.8__tar.gz → 1.3.10__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.3.10/PKG-INFO +306 -0
- tomwer-1.3.10/orangecontrib/tomwer/tutorials/icat_publication.ows +58 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/__init__.py +63 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py +230 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/control/DataListOW.py +129 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/control/DataListenerOW.py +409 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/control/DataSelectorOW.py +145 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/control/DataValidatorOW.py +194 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +252 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/control/EmailOW.py +82 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +92 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/control/NXTomomillOW.py +353 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/control/NXtomoConcatenate.py +201 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/control/NotifierOW.py +127 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +168 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/control/VolumeSelector.py +142 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/control/VolumeSymLinkOW.py +182 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py +176 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +182 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py +133 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +133 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +128 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/edit/test/test_nxtomo_editor.py +141 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/icat/PublishProcessedDataOW.py +115 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/icat/RawDataScreenshotCreatorOW.py +98 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/icat/SaveToGalleryAndPublishOW.py +129 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/icat/__init__.py +13 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/icat/icons/add_gallery.png +0 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/icat/icons/add_gallery.svg +82 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/icat/icons/publish_processed_data.png +0 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/icat/icons/publish_processed_data.svg +95 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/icat/icons/raw_screenshots.png +0 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/icat/icons/raw_screenshots.svg +143 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/icons/tomwer_data_portal.png +0 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/icons/tomwer_data_portal.svg +76 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +567 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +249 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/reconstruction/NabuHelicalPrepareWeightsDoubleOW.py +184 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +330 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +501 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +492 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +412 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +302 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +147 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +79 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/visualization/LivesliceOW.py +87 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py +69 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +91 -0
- tomwer-1.3.10/orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py +62 -0
- tomwer-1.3.10/setup.cfg +166 -0
- tomwer-1.3.10/tomwer/__main__.py +255 -0
- tomwer-1.3.10/tomwer/app/axis.py +199 -0
- tomwer-1.3.10/tomwer/app/canvas.py +63 -0
- tomwer-1.3.10/tomwer/app/canvas_launcher/config.py +208 -0
- tomwer-1.3.10/tomwer/app/canvas_launcher/environ.py +93 -0
- tomwer-1.3.10/tomwer/app/canvas_launcher/mainwindow.py +572 -0
- tomwer-1.3.10/tomwer/app/darkref.py +10 -0
- tomwer-1.3.10/tomwer/app/darkrefpatch.py +10 -0
- tomwer-1.3.10/tomwer/app/diffframe.py +105 -0
- tomwer-1.3.10/tomwer/app/imagekeyeditor.py +98 -0
- tomwer-1.3.10/tomwer/app/imagekeyupgrader.py +108 -0
- tomwer-1.3.10/tomwer/app/intensitynormalization.py +209 -0
- tomwer-1.3.10/tomwer/app/multicor.py +305 -0
- tomwer-1.3.10/tomwer/app/multipag.py +369 -0
- tomwer-1.3.10/tomwer/app/nabuapp.py +246 -0
- tomwer-1.3.10/tomwer/app/radiostack.py +95 -0
- tomwer-1.3.10/tomwer/app/samplemoved.py +92 -0
- tomwer-1.3.10/tomwer/app/scanviewer.py +99 -0
- tomwer-1.3.10/tomwer/app/sinogramviewer.py +124 -0
- tomwer-1.3.10/tomwer/app/slicestack.py +92 -0
- tomwer-1.3.10/tomwer/app/zstitching.py +382 -0
- tomwer-1.3.10/tomwer/core/cluster/cluster.py +173 -0
- tomwer-1.3.10/tomwer/core/log/logger.py +130 -0
- tomwer-1.3.10/tomwer/core/process/conditions/filters.py +239 -0
- tomwer-1.3.10/tomwer/core/process/control/datalistener/datalistener.py +592 -0
- tomwer-1.3.10/tomwer/core/process/control/nxtomoconcatenate.py +127 -0
- tomwer-1.3.10/tomwer/core/process/control/nxtomomill.py +237 -0
- tomwer-1.3.10/tomwer/core/process/control/scantransfer.py +696 -0
- tomwer-1.3.10/tomwer/core/process/control/scanvalidator.py +286 -0
- tomwer-1.3.10/tomwer/core/process/control/test/test_concatenate_nxtomos.py +81 -0
- tomwer-1.3.10/tomwer/core/process/control/test/test_email.py +52 -0
- tomwer-1.3.10/tomwer/core/process/control/test/test_h52nx_process.py +158 -0
- tomwer-1.3.10/tomwer/core/process/control/test/test_volume_link.py +74 -0
- tomwer-1.3.10/tomwer/core/process/control/timer.py +105 -0
- tomwer-1.3.10/tomwer/core/process/control/volumesymlink.py +200 -0
- tomwer-1.3.10/tomwer/core/process/edit/darkflatpatch.py +156 -0
- tomwer-1.3.10/tomwer/core/process/edit/imagekeyeditor.py +283 -0
- tomwer-1.3.10/tomwer/core/process/icat/createscreenshots.py +100 -0
- tomwer-1.3.10/tomwer/core/process/icat/gallery.py +377 -0
- tomwer-1.3.10/tomwer/core/process/icat/icatbase.py +36 -0
- tomwer-1.3.10/tomwer/core/process/icat/publish.py +228 -0
- tomwer-1.3.10/tomwer/core/process/icat/screenshots.py +27 -0
- tomwer-1.3.10/tomwer/core/process/output.py +52 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/axis/axis.py +1229 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/axis/mode.py +210 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/axis/params.py +950 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/darkref/darkrefs.py +560 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/darkref/darkrefscopy.py +365 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/darkref/params.py +300 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/nabu/castvolume.py +254 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/nabu/helical.py +58 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/nabu/nabucommon.py +689 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/nabu/nabuscores.py +717 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/nabu/nabuslices.py +992 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/nabu/nabuvolume.py +611 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/nabu/plane.py +9 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/nabu/settings.py +62 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/nabu/utils.py +573 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/output.py +108 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/saaxis/saaxis.py +863 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +870 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/scores/params.py +214 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/scores/scores.py +230 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/test/test_axis_params.py +61 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/test/test_darkref.py +60 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/test/test_darkref_copy.py +204 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/test/test_saaxis.py +117 -0
- tomwer-1.3.10/tomwer/core/process/reconstruction/test/test_sadeltabeta.py +74 -0
- tomwer-1.3.10/tomwer/core/process/stitching/nabustitcher.py +171 -0
- tomwer-1.3.10/tomwer/core/process/task.py +462 -0
- tomwer-1.3.10/tomwer/core/process/test/test_axis.py +309 -0
- tomwer-1.3.10/tomwer/core/process/test/test_dark_and_flat.py +391 -0
- tomwer-1.3.10/tomwer/core/process/test/test_data_transfer.py +381 -0
- tomwer-1.3.10/tomwer/core/process/test/test_nabu.py +491 -0
- tomwer-1.3.10/tomwer/core/process/test/test_normalization.py +104 -0
- tomwer-1.3.10/tomwer/core/scan/blissscan.py +262 -0
- tomwer-1.3.10/tomwer/core/scan/edfscan.py +627 -0
- tomwer-1.3.10/tomwer/core/scan/hdf5scan.py +26 -0
- tomwer-1.3.10/tomwer/core/scan/nxtomoscan.py +534 -0
- tomwer-1.3.10/tomwer/core/scan/scanbase.py +883 -0
- tomwer-1.3.10/tomwer/core/scan/scanfactory.py +256 -0
- tomwer-1.3.10/tomwer/core/scan/test/test_edf.py +53 -0
- tomwer-1.3.10/tomwer/core/scan/test/test_future_scan.py +61 -0
- tomwer-1.3.10/tomwer/core/scan/test/test_h5.py +96 -0
- tomwer-1.3.10/tomwer/core/scan/test/test_process_registration.py +109 -0
- tomwer-1.3.10/tomwer/core/scan/test/test_scan.py +373 -0
- tomwer-1.3.10/tomwer/core/settings.py +193 -0
- tomwer-1.3.10/tomwer/core/test/test_scanutils.py +53 -0
- tomwer-1.3.10/tomwer/core/test/test_utils.py +299 -0
- tomwer-1.3.10/tomwer/core/tomwer_object.py +51 -0
- tomwer-1.3.10/tomwer/core/utils/deprecation.py +135 -0
- tomwer-1.3.10/tomwer/core/utils/dictutils.py +14 -0
- tomwer-1.3.10/tomwer/core/utils/lbsram.py +35 -0
- tomwer-1.3.10/tomwer/core/utils/nxtomoutils.py +65 -0
- tomwer-1.3.10/tomwer/core/utils/scanutils.py +448 -0
- tomwer-1.3.10/tomwer/core/utils/spec.py +263 -0
- tomwer-1.3.10/tomwer/core/volume/edfvolume.py +96 -0
- tomwer-1.3.10/tomwer/core/volume/hdf5volume.py +113 -0
- tomwer-1.3.10/tomwer/core/volume/jp2kvolume.py +97 -0
- tomwer-1.3.10/tomwer/core/volume/rawvolume.py +107 -0
- tomwer-1.3.10/tomwer/core/volume/tiffvolume.py +161 -0
- tomwer-1.3.10/tomwer/core/volume/volumefactory.py +183 -0
- tomwer-1.3.10/tomwer/gui/cluster/slurm.py +674 -0
- tomwer-1.3.10/tomwer/gui/cluster/supervisor.py +441 -0
- tomwer-1.3.10/tomwer/gui/cluster/test/test_cluster.py +107 -0
- tomwer-1.3.10/tomwer/gui/cluster/test/test_supervisor.py +91 -0
- tomwer-1.3.10/tomwer/gui/configuration/action.py +89 -0
- tomwer-1.3.10/tomwer/gui/configuration/level.py +22 -0
- tomwer-1.3.10/tomwer/gui/control/actions.py +124 -0
- tomwer-1.3.10/tomwer/gui/control/datalist.py +1100 -0
- tomwer-1.3.10/tomwer/gui/control/datalistener.py +477 -0
- tomwer-1.3.10/tomwer/gui/control/datawatcher/controlwidget.py +114 -0
- tomwer-1.3.10/tomwer/gui/control/datawatcher/datawatcher.py +580 -0
- tomwer-1.3.10/tomwer/gui/control/emailnotifier.py +174 -0
- tomwer-1.3.10/tomwer/gui/control/history.py +133 -0
- tomwer-1.3.10/tomwer/gui/control/observations.py +219 -0
- tomwer-1.3.10/tomwer/gui/control/reducedarkflatselector.py +545 -0
- tomwer-1.3.10/tomwer/gui/control/selectorwidgetbase.py +165 -0
- tomwer-1.3.10/tomwer/gui/control/serie/seriecreator.py +959 -0
- tomwer-1.3.10/tomwer/gui/control/test/test_email.py +35 -0
- tomwer-1.3.10/tomwer/gui/control/test/test_scanvalidator.py +116 -0
- tomwer-1.3.10/tomwer/gui/control/test/test_single_tomo_obj.py +71 -0
- tomwer-1.3.10/tomwer/gui/control/tomoobjdisplaymode.py +8 -0
- tomwer-1.3.10/tomwer/gui/debugtools/datasetgenerator.py +280 -0
- tomwer-1.3.10/tomwer/gui/edit/dkrfpatch.py +477 -0
- tomwer-1.3.10/tomwer/gui/edit/imagekeyeditor.py +822 -0
- tomwer-1.3.10/tomwer/gui/edit/nxtomoeditor.py +715 -0
- tomwer-1.3.10/tomwer/gui/edit/nxtomowarmer.py +58 -0
- tomwer-1.3.10/tomwer/gui/edit/test/test_dkrf_patch.py +212 -0
- tomwer-1.3.10/tomwer/gui/edit/test/test_image_key_editor.py +170 -0
- tomwer-1.3.10/tomwer/gui/edit/test/test_nx_editor.py +307 -0
- tomwer-1.3.10/tomwer/gui/icat/createscreenshots.py +80 -0
- tomwer-1.3.10/tomwer/gui/icat/gallery.py +214 -0
- tomwer-1.3.10/tomwer/gui/icat/publish.py +187 -0
- tomwer-1.3.10/tomwer/gui/imagefromfile.py +157 -0
- tomwer-1.3.10/tomwer/gui/qfolderdialog.py +569 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/axis/CompareImages.py +329 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/axis/axis.py +730 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/axis/radioaxis.py +2465 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/darkref/darkrefcopywidget.py +302 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/darkref/darkrefwidget.py +445 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/nabu/castvolume.py +340 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/nabu/check.py +115 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/nabu/helical.py +78 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/nabu/nabuconfig/base.py +96 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/nabu/nabuconfig/output.py +348 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +387 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +741 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +1018 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/nabu/nabuflow.py +467 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/nabu/slices.py +624 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/nabu/volume.py +487 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/normalization/intensity.py +892 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/saaxis/corrangeselector.py +815 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/saaxis/dimensionwidget.py +260 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/saaxis/saaxis.py +513 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +533 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/scores/control.py +75 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/scores/scoreplot.py +888 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/test/test_axis.py +229 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/test/test_nabu.py +381 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/test/test_saaxis.py +214 -0
- tomwer-1.3.10/tomwer/gui/reconstruction/test/test_sadeltabeta.py +151 -0
- tomwer-1.3.10/tomwer/gui/settings.py +8 -0
- tomwer-1.3.10/tomwer/gui/stackplot.py +732 -0
- tomwer-1.3.10/tomwer/gui/stitching/action.py +49 -0
- tomwer-1.3.10/tomwer/gui/stitching/config/axisparams.py +187 -0
- tomwer-1.3.10/tomwer/gui/stitching/config/output.py +161 -0
- tomwer-1.3.10/tomwer/gui/stitching/config/positionoveraxis.py +168 -0
- tomwer-1.3.10/tomwer/gui/stitching/normalization.py +117 -0
- tomwer-1.3.10/tomwer/gui/stitching/stitchandbackground.py +149 -0
- tomwer-1.3.10/tomwer/gui/stitching/stitching.py +1387 -0
- tomwer-1.3.10/tomwer/gui/stitching/stitching_preview.py +246 -0
- tomwer-1.3.10/tomwer/gui/stitching/stitching_raw.py +576 -0
- tomwer-1.3.10/tomwer/gui/stitching/z_stitching/fineestimation.py +247 -0
- tomwer-1.3.10/tomwer/gui/utils/buttons.py +185 -0
- tomwer-1.3.10/tomwer/gui/utils/inputwidget.py +628 -0
- tomwer-1.3.10/tomwer/gui/utils/lineselector/lineselector.py +232 -0
- tomwer-1.3.10/tomwer/gui/utils/scandescription.py +83 -0
- tomwer-1.3.10/tomwer/gui/utils/step.py +144 -0
- tomwer-1.3.10/tomwer/gui/utils/unitsystem.py +237 -0
- tomwer-1.3.10/tomwer/gui/utils/vignettes.py +553 -0
- tomwer-1.3.10/tomwer/gui/visualization/dataviewer.py +711 -0
- tomwer-1.3.10/tomwer/gui/visualization/diffviewer/diffviewer.py +570 -0
- tomwer-1.3.10/tomwer/gui/visualization/diffviewer/shiftwidget.py +561 -0
- tomwer-1.3.10/tomwer/gui/visualization/scanoverview.py +268 -0
- tomwer-1.3.10/tomwer/gui/visualization/sinogramviewer.py +287 -0
- tomwer-1.3.10/tomwer/gui/visualization/test/test_diffviewer.py +99 -0
- tomwer-1.3.10/tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py +74 -0
- tomwer-1.3.10/tomwer/gui/visualization/test/test_sinogramviewer.py +85 -0
- tomwer-1.3.10/tomwer/gui/visualization/test/test_stacks.py +134 -0
- tomwer-1.3.10/tomwer/gui/visualization/test/test_volumeviewer.py +82 -0
- tomwer-1.3.10/tomwer/gui/visualization/volumeviewer.py +448 -0
- tomwer-1.3.10/tomwer/io/utils/h5pyutils.py +78 -0
- tomwer-1.3.10/tomwer/io/utils/raw_and_processed_data.py +84 -0
- tomwer-1.3.10/tomwer/io/utils/tomoobj.py +77 -0
- tomwer-1.3.10/tomwer/io/utils/utils.py +284 -0
- tomwer-1.3.10/tomwer/resources/gui/icons/parameters.svg +70 -0
- tomwer-1.3.10/tomwer/resources/gui/icons/ruler.png +0 -0
- tomwer-1.3.10/tomwer/resources/gui/icons/ruler.svg +273 -0
- tomwer-1.3.10/tomwer/resources/gui/icons/short_description.png +0 -0
- tomwer-1.3.10/tomwer/resources/gui/icons/short_description.svg +58 -0
- tomwer-1.3.10/tomwer/resources/gui/icons/url.png +0 -0
- tomwer-1.3.10/tomwer/resources/gui/icons/url.svg +58 -0
- tomwer-1.3.10/tomwer/resources/gui/illustrations/no_rot.svg +334 -0
- tomwer-1.3.10/tomwer/synctools/stacks/edit/darkflatpatch.py +169 -0
- tomwer-1.3.10/tomwer/synctools/stacks/edit/imagekeyeditor.py +135 -0
- tomwer-1.3.10/tomwer/synctools/stacks/reconstruction/__init__.py +0 -0
- tomwer-1.3.10/tomwer/synctools/stacks/reconstruction/axis.py +218 -0
- tomwer-1.3.10/tomwer/synctools/stacks/reconstruction/castvolume.py +212 -0
- tomwer-1.3.10/tomwer/synctools/stacks/reconstruction/dkrefcopy.py +182 -0
- tomwer-1.3.10/tomwer/synctools/stacks/reconstruction/nabu.py +205 -0
- tomwer-1.3.10/tomwer/synctools/stacks/reconstruction/normalization.py +136 -0
- tomwer-1.3.10/tomwer/synctools/stacks/reconstruction/saaxis.py +182 -0
- tomwer-1.3.10/tomwer/synctools/stacks/reconstruction/sadeltabeta.py +183 -0
- tomwer-1.3.10/tomwer/synctools/test/__init__.py +0 -0
- tomwer-1.3.10/tomwer/synctools/test/test_darkRefs.py +423 -0
- tomwer-1.3.10/tomwer/synctools/test/test_foldertransfer.py +407 -0
- tomwer-1.3.10/tomwer/synctools/utils/__init__.py +0 -0
- tomwer-1.3.10/tomwer/synctools/utils/scanstages.py +207 -0
- tomwer-1.3.10/tomwer/tests/__init__.py +0 -0
- tomwer-1.3.10/tomwer/tests/conftest.py +85 -0
- tomwer-1.3.10/tomwer/tests/datasets.py +13 -0
- tomwer-1.3.10/tomwer/tests/test_scripts.py +161 -0
- tomwer-1.3.10/tomwer/tests/utils.py +5 -0
- tomwer-1.3.10/tomwer/third_part/WaitingOverlay.py +110 -0
- tomwer-1.3.10/tomwer/third_part/__init__.py +0 -0
- tomwer-1.3.10/tomwer/version.py +134 -0
- tomwer-1.3.10/tomwer.egg-info/PKG-INFO +306 -0
- tomwer-1.3.10/tomwer.egg-info/SOURCES.txt +790 -0
- tomwer-1.3.10/tomwer.egg-info/requires.txt +185 -0
- tomwer-1.2.8/PKG-INFO +0 -291
- tomwer-1.2.8/orangecontrib/tomwer/widgets/__init__.py +0 -63
- tomwer-1.2.8/orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py +0 -230
- tomwer-1.2.8/orangecontrib/tomwer/widgets/control/DataListOW.py +0 -127
- tomwer-1.2.8/orangecontrib/tomwer/widgets/control/DataListenerOW.py +0 -409
- tomwer-1.2.8/orangecontrib/tomwer/widgets/control/DataSelectorOW.py +0 -134
- tomwer-1.2.8/orangecontrib/tomwer/widgets/control/DataValidatorOW.py +0 -194
- tomwer-1.2.8/orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +0 -235
- tomwer-1.2.8/orangecontrib/tomwer/widgets/control/EmailOW.py +0 -82
- tomwer-1.2.8/orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +0 -92
- tomwer-1.2.8/orangecontrib/tomwer/widgets/control/NXTomomillOW.py +0 -327
- tomwer-1.2.8/orangecontrib/tomwer/widgets/control/NXtomoConcatenate.py +0 -189
- tomwer-1.2.8/orangecontrib/tomwer/widgets/control/NotifierOW.py +0 -126
- tomwer-1.2.8/orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +0 -168
- tomwer-1.2.8/orangecontrib/tomwer/widgets/control/VolumeSelector.py +0 -139
- tomwer-1.2.8/orangecontrib/tomwer/widgets/control/VolumeSymLinkOW.py +0 -182
- tomwer-1.2.8/orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py +0 -176
- tomwer-1.2.8/orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +0 -182
- tomwer-1.2.8/orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py +0 -133
- tomwer-1.2.8/orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +0 -126
- tomwer-1.2.8/orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +0 -128
- tomwer-1.2.8/orangecontrib/tomwer/widgets/edit/test/test_nxtomo_editor.py +0 -141
- tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +0 -565
- tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +0 -249
- tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/NabuHelicalPrepareWeightsDoubleOW.py +0 -169
- tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +0 -307
- tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +0 -467
- tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +0 -496
- tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +0 -420
- tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +0 -306
- tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/TofuOW.py +0 -197
- tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/icons/XY_lamino.svg +0 -168
- tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/icons/XZ_lamino.svg +0 -275
- tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/icons/YZ_lamino.svg +0 -182
- tomwer-1.2.8/orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +0 -147
- tomwer-1.2.8/orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +0 -79
- tomwer-1.2.8/orangecontrib/tomwer/widgets/visualization/LivesliceOW.py +0 -87
- tomwer-1.2.8/orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py +0 -69
- tomwer-1.2.8/orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +0 -92
- tomwer-1.2.8/orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py +0 -88
- tomwer-1.2.8/setup.cfg +0 -155
- tomwer-1.2.8/tomwer/__main__.py +0 -312
- tomwer-1.2.8/tomwer/app/axis.py +0 -199
- tomwer-1.2.8/tomwer/app/canvas.py +0 -55
- tomwer-1.2.8/tomwer/app/canvas_launcher/config.py +0 -206
- tomwer-1.2.8/tomwer/app/canvas_launcher/environ.py +0 -92
- tomwer-1.2.8/tomwer/app/canvas_launcher/mainwindow.py +0 -569
- tomwer-1.2.8/tomwer/app/darkref.py +0 -10
- tomwer-1.2.8/tomwer/app/darkrefpatch.py +0 -10
- tomwer-1.2.8/tomwer/app/diffframe.py +0 -105
- tomwer-1.2.8/tomwer/app/imagekeyeditor.py +0 -98
- tomwer-1.2.8/tomwer/app/imagekeyupgrader.py +0 -108
- tomwer-1.2.8/tomwer/app/intensitynormalization.py +0 -208
- tomwer-1.2.8/tomwer/app/lamino.py +0 -143
- tomwer-1.2.8/tomwer/app/nabuapp.py +0 -257
- tomwer-1.2.8/tomwer/app/radiostack.py +0 -93
- tomwer-1.2.8/tomwer/app/saaxis.py +0 -305
- tomwer-1.2.8/tomwer/app/sadeltabeta.py +0 -369
- tomwer-1.2.8/tomwer/app/samplemoved.py +0 -91
- tomwer-1.2.8/tomwer/app/scanviewer.py +0 -97
- tomwer-1.2.8/tomwer/app/sinogramviewer.py +0 -123
- tomwer-1.2.8/tomwer/app/slicestack.py +0 -91
- tomwer-1.2.8/tomwer/app/zstitching.py +0 -300
- tomwer-1.2.8/tomwer/core/cluster/cluster.py +0 -147
- tomwer-1.2.8/tomwer/core/log/logger.py +0 -128
- tomwer-1.2.8/tomwer/core/process/conditions/filters.py +0 -239
- tomwer-1.2.8/tomwer/core/process/control/datalistener/datalistener.py +0 -587
- tomwer-1.2.8/tomwer/core/process/control/nxtomoconcatenate.py +0 -127
- tomwer-1.2.8/tomwer/core/process/control/nxtomomill.py +0 -179
- tomwer-1.2.8/tomwer/core/process/control/scantransfer.py +0 -719
- tomwer-1.2.8/tomwer/core/process/control/scanvalidator.py +0 -285
- tomwer-1.2.8/tomwer/core/process/control/test/test_concatenate_nxtomos.py +0 -81
- tomwer-1.2.8/tomwer/core/process/control/test/test_email.py +0 -52
- tomwer-1.2.8/tomwer/core/process/control/test/test_h52nx_process.py +0 -106
- tomwer-1.2.8/tomwer/core/process/control/test/test_volume_link.py +0 -74
- tomwer-1.2.8/tomwer/core/process/control/timer.py +0 -105
- tomwer-1.2.8/tomwer/core/process/control/volumesymlink.py +0 -200
- tomwer-1.2.8/tomwer/core/process/edit/darkflatpatch.py +0 -157
- tomwer-1.2.8/tomwer/core/process/edit/imagekeyeditor.py +0 -281
- tomwer-1.2.8/tomwer/core/process/reconstruction/axis/axis.py +0 -1018
- tomwer-1.2.8/tomwer/core/process/reconstruction/axis/mode.py +0 -95
- tomwer-1.2.8/tomwer/core/process/reconstruction/axis/params.py +0 -942
- tomwer-1.2.8/tomwer/core/process/reconstruction/darkref/darkrefs.py +0 -559
- tomwer-1.2.8/tomwer/core/process/reconstruction/darkref/darkrefscopy.py +0 -364
- tomwer-1.2.8/tomwer/core/process/reconstruction/darkref/params.py +0 -300
- tomwer-1.2.8/tomwer/core/process/reconstruction/lamino/__init__.py +0 -1
- tomwer-1.2.8/tomwer/core/process/reconstruction/lamino/tofu.py +0 -1000
- tomwer-1.2.8/tomwer/core/process/reconstruction/nabu/castvolume.py +0 -254
- tomwer-1.2.8/tomwer/core/process/reconstruction/nabu/helical.py +0 -54
- tomwer-1.2.8/tomwer/core/process/reconstruction/nabu/nabucommon.py +0 -696
- tomwer-1.2.8/tomwer/core/process/reconstruction/nabu/nabuscores.py +0 -357
- tomwer-1.2.8/tomwer/core/process/reconstruction/nabu/nabuslices.py +0 -973
- tomwer-1.2.8/tomwer/core/process/reconstruction/nabu/nabuvolume.py +0 -584
- tomwer-1.2.8/tomwer/core/process/reconstruction/nabu/settings.py +0 -62
- tomwer-1.2.8/tomwer/core/process/reconstruction/nabu/utils.py +0 -440
- tomwer-1.2.8/tomwer/core/process/reconstruction/saaxis/saaxis.py +0 -891
- tomwer-1.2.8/tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +0 -808
- tomwer-1.2.8/tomwer/core/process/reconstruction/scores/params.py +0 -211
- tomwer-1.2.8/tomwer/core/process/reconstruction/scores/scores.py +0 -217
- tomwer-1.2.8/tomwer/core/process/reconstruction/test/test_axis_params.py +0 -61
- tomwer-1.2.8/tomwer/core/process/reconstruction/test/test_darkref.py +0 -60
- tomwer-1.2.8/tomwer/core/process/reconstruction/test/test_darkref_copy.py +0 -204
- tomwer-1.2.8/tomwer/core/process/reconstruction/test/test_saaxis.py +0 -118
- tomwer-1.2.8/tomwer/core/process/reconstruction/test/test_sadeltabeta.py +0 -74
- tomwer-1.2.8/tomwer/core/process/stitching/nabustitcher.py +0 -170
- tomwer-1.2.8/tomwer/core/process/task.py +0 -455
- tomwer-1.2.8/tomwer/core/process/test/test_axis.py +0 -308
- tomwer-1.2.8/tomwer/core/process/test/test_dark_and_flat.py +0 -388
- tomwer-1.2.8/tomwer/core/process/test/test_data_transfer.py +0 -379
- tomwer-1.2.8/tomwer/core/process/test/test_lamino.py +0 -76
- tomwer-1.2.8/tomwer/core/process/test/test_nabu.py +0 -483
- tomwer-1.2.8/tomwer/core/process/test/test_normalization.py +0 -104
- tomwer-1.2.8/tomwer/core/scan/blissscan.py +0 -262
- tomwer-1.2.8/tomwer/core/scan/edfscan.py +0 -624
- tomwer-1.2.8/tomwer/core/scan/hdf5scan.py +0 -507
- tomwer-1.2.8/tomwer/core/scan/scanbase.py +0 -855
- tomwer-1.2.8/tomwer/core/scan/scanfactory.py +0 -256
- tomwer-1.2.8/tomwer/core/scan/test/test_edf.py +0 -53
- tomwer-1.2.8/tomwer/core/scan/test/test_future_scan.py +0 -61
- tomwer-1.2.8/tomwer/core/scan/test/test_h5.py +0 -94
- tomwer-1.2.8/tomwer/core/scan/test/test_process_registration.py +0 -109
- tomwer-1.2.8/tomwer/core/scan/test/test_scan.py +0 -446
- tomwer-1.2.8/tomwer/core/settings.py +0 -173
- tomwer-1.2.8/tomwer/core/test/test_lamino.py +0 -92
- tomwer-1.2.8/tomwer/core/test/test_scanutils.py +0 -52
- tomwer-1.2.8/tomwer/core/test/test_utils.py +0 -292
- tomwer-1.2.8/tomwer/core/tomwer_object.py +0 -51
- tomwer-1.2.8/tomwer/core/utils/__init__.py +0 -466
- tomwer-1.2.8/tomwer/core/utils/deprecation.py +0 -135
- tomwer-1.2.8/tomwer/core/utils/nxtomoutils.py +0 -65
- tomwer-1.2.8/tomwer/core/utils/scanutils.py +0 -448
- tomwer-1.2.8/tomwer/core/volume/edfvolume.py +0 -96
- tomwer-1.2.8/tomwer/core/volume/hdf5volume.py +0 -113
- tomwer-1.2.8/tomwer/core/volume/jp2kvolume.py +0 -97
- tomwer-1.2.8/tomwer/core/volume/rawvolume.py +0 -107
- tomwer-1.2.8/tomwer/core/volume/tiffvolume.py +0 -161
- tomwer-1.2.8/tomwer/core/volume/volumefactory.py +0 -183
- tomwer-1.2.8/tomwer/gui/cluster/slurm.py +0 -465
- tomwer-1.2.8/tomwer/gui/cluster/supervisor.py +0 -429
- tomwer-1.2.8/tomwer/gui/cluster/test/test_cluster.py +0 -95
- tomwer-1.2.8/tomwer/gui/cluster/test/test_supervisor.py +0 -91
- tomwer-1.2.8/tomwer/gui/control/actions.py +0 -70
- tomwer-1.2.8/tomwer/gui/control/datalist.py +0 -1033
- tomwer-1.2.8/tomwer/gui/control/datalistener.py +0 -489
- tomwer-1.2.8/tomwer/gui/control/datawatcher/controlwidget.py +0 -116
- tomwer-1.2.8/tomwer/gui/control/datawatcher/datawatcher.py +0 -603
- tomwer-1.2.8/tomwer/gui/control/email.py +0 -183
- tomwer-1.2.8/tomwer/gui/control/history.py +0 -133
- tomwer-1.2.8/tomwer/gui/control/observations.py +0 -219
- tomwer-1.2.8/tomwer/gui/control/reducedarkflatselector.py +0 -545
- tomwer-1.2.8/tomwer/gui/control/selectorwidgetbase.py +0 -138
- tomwer-1.2.8/tomwer/gui/control/serie/seriecreator.py +0 -976
- tomwer-1.2.8/tomwer/gui/control/test/test_email.py +0 -35
- tomwer-1.2.8/tomwer/gui/control/test/test_scanvalidator.py +0 -115
- tomwer-1.2.8/tomwer/gui/control/test/test_single_tomo_obj.py +0 -71
- tomwer-1.2.8/tomwer/gui/debugtools/datasetgenerator.py +0 -280
- tomwer-1.2.8/tomwer/gui/edit/dkrfpatch.py +0 -483
- tomwer-1.2.8/tomwer/gui/edit/imagekeyeditor.py +0 -823
- tomwer-1.2.8/tomwer/gui/edit/nxtomoeditor.py +0 -648
- tomwer-1.2.8/tomwer/gui/edit/nxtomowarmer.py +0 -57
- tomwer-1.2.8/tomwer/gui/edit/test/test_dkrf_patch.py +0 -212
- tomwer-1.2.8/tomwer/gui/edit/test/test_image_key_editor.py +0 -170
- tomwer-1.2.8/tomwer/gui/edit/test/test_nx_editor.py +0 -283
- tomwer-1.2.8/tomwer/gui/imagefromfile.py +0 -157
- tomwer-1.2.8/tomwer/gui/qfolderdialog.py +0 -550
- tomwer-1.2.8/tomwer/gui/reconstruction/axis/CompareImages.py +0 -409
- tomwer-1.2.8/tomwer/gui/reconstruction/axis/axis.py +0 -616
- tomwer-1.2.8/tomwer/gui/reconstruction/axis/radioaxis.py +0 -2604
- tomwer-1.2.8/tomwer/gui/reconstruction/darkref/darkrefcopywidget.py +0 -301
- tomwer-1.2.8/tomwer/gui/reconstruction/darkref/darkrefwidget.py +0 -444
- tomwer-1.2.8/tomwer/gui/reconstruction/lamino/__init__.py +0 -31
- tomwer-1.2.8/tomwer/gui/reconstruction/lamino/tofu/TofuOptionLoader.py +0 -107
- tomwer-1.2.8/tomwer/gui/reconstruction/lamino/tofu/__init__.py +0 -1
- tomwer-1.2.8/tomwer/gui/reconstruction/lamino/tofu/misc.py +0 -148
- tomwer-1.2.8/tomwer/gui/reconstruction/lamino/tofu/projections.py +0 -896
- tomwer-1.2.8/tomwer/gui/reconstruction/lamino/tofu/settings.py +0 -75
- tomwer-1.2.8/tomwer/gui/reconstruction/lamino/tofu/tofu.py +0 -432
- tomwer-1.2.8/tomwer/gui/reconstruction/lamino/tofu/tofuexpert.py +0 -567
- tomwer-1.2.8/tomwer/gui/reconstruction/lamino/tofu/tofuoutput.py +0 -760
- tomwer-1.2.8/tomwer/gui/reconstruction/nabu/action.py +0 -120
- tomwer-1.2.8/tomwer/gui/reconstruction/nabu/castvolume.py +0 -329
- tomwer-1.2.8/tomwer/gui/reconstruction/nabu/check.py +0 -115
- tomwer-1.2.8/tomwer/gui/reconstruction/nabu/helical.py +0 -61
- tomwer-1.2.8/tomwer/gui/reconstruction/nabu/nabuconfig/base.py +0 -98
- tomwer-1.2.8/tomwer/gui/reconstruction/nabu/nabuconfig/output.py +0 -256
- tomwer-1.2.8/tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +0 -390
- tomwer-1.2.8/tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +0 -551
- tomwer-1.2.8/tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +0 -988
- tomwer-1.2.8/tomwer/gui/reconstruction/nabu/nabuflow.py +0 -475
- tomwer-1.2.8/tomwer/gui/reconstruction/nabu/slices.py +0 -625
- tomwer-1.2.8/tomwer/gui/reconstruction/nabu/volume.py +0 -475
- tomwer-1.2.8/tomwer/gui/reconstruction/normalization/intensity.py +0 -922
- tomwer-1.2.8/tomwer/gui/reconstruction/saaxis/corrangeselector.py +0 -831
- tomwer-1.2.8/tomwer/gui/reconstruction/saaxis/dimensionwidget.py +0 -260
- tomwer-1.2.8/tomwer/gui/reconstruction/saaxis/saaxis.py +0 -525
- tomwer-1.2.8/tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +0 -542
- tomwer-1.2.8/tomwer/gui/reconstruction/scores/control.py +0 -82
- tomwer-1.2.8/tomwer/gui/reconstruction/scores/scoreplot.py +0 -886
- tomwer-1.2.8/tomwer/gui/reconstruction/test/test_axis.py +0 -204
- tomwer-1.2.8/tomwer/gui/reconstruction/test/test_lamino.py +0 -189
- tomwer-1.2.8/tomwer/gui/reconstruction/test/test_nabu.py +0 -359
- tomwer-1.2.8/tomwer/gui/reconstruction/test/test_saaxis.py +0 -214
- tomwer-1.2.8/tomwer/gui/reconstruction/test/test_sadeltabeta.py +0 -151
- tomwer-1.2.8/tomwer/gui/settings.py +0 -31
- tomwer-1.2.8/tomwer/gui/stackplot.py +0 -735
- tomwer-1.2.8/tomwer/gui/stitching/config/axisparams.py +0 -204
- tomwer-1.2.8/tomwer/gui/stitching/config/output.py +0 -159
- tomwer-1.2.8/tomwer/gui/stitching/config/positionoveraxis.py +0 -169
- tomwer-1.2.8/tomwer/gui/stitching/stitchandbackground.py +0 -151
- tomwer-1.2.8/tomwer/gui/stitching/stitching.py +0 -1165
- tomwer-1.2.8/tomwer/gui/stitching/stitching_preview.py +0 -239
- tomwer-1.2.8/tomwer/gui/stitching/stitching_raw.py +0 -579
- tomwer-1.2.8/tomwer/gui/stitching/z_stitching/fineestimation.py +0 -307
- tomwer-1.2.8/tomwer/gui/utils/buttons.py +0 -102
- tomwer-1.2.8/tomwer/gui/utils/inputwidget.py +0 -610
- tomwer-1.2.8/tomwer/gui/utils/lineselector/lineselector.py +0 -232
- tomwer-1.2.8/tomwer/gui/utils/scandescription.py +0 -79
- tomwer-1.2.8/tomwer/gui/utils/unitsystem.py +0 -240
- tomwer-1.2.8/tomwer/gui/utils/vignettes.py +0 -392
- tomwer-1.2.8/tomwer/gui/visualization/dataviewer.py +0 -698
- tomwer-1.2.8/tomwer/gui/visualization/diffviewer/diffviewer.py +0 -579
- tomwer-1.2.8/tomwer/gui/visualization/diffviewer/shiftwidget.py +0 -564
- tomwer-1.2.8/tomwer/gui/visualization/scanoverview.py +0 -268
- tomwer-1.2.8/tomwer/gui/visualization/sinogramviewer.py +0 -303
- tomwer-1.2.8/tomwer/gui/visualization/test/test_diffviewer.py +0 -99
- tomwer-1.2.8/tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py +0 -74
- tomwer-1.2.8/tomwer/gui/visualization/test/test_sinogramviewer.py +0 -85
- tomwer-1.2.8/tomwer/gui/visualization/test/test_stacks.py +0 -134
- tomwer-1.2.8/tomwer/gui/visualization/test/test_volumeviewer.py +0 -84
- tomwer-1.2.8/tomwer/gui/visualization/volumeviewer.py +0 -447
- tomwer-1.2.8/tomwer/io/utils/h5pyutils.py +0 -78
- tomwer-1.2.8/tomwer/io/utils/tomoobj.py +0 -79
- tomwer-1.2.8/tomwer/io/utils/utils.py +0 -284
- tomwer-1.2.8/tomwer/resources/gui/icons/esrf_1.svg +0 -307
- tomwer-1.2.8/tomwer/resources/gui/icons/lamino_parameters.svg +0 -70
- tomwer-1.2.8/tomwer/resources/gui/icons/parameters.svg +0 -70
- tomwer-1.2.8/tomwer/resources/gui/icons/triangle.svg +0 -80
- tomwer-1.2.8/tomwer/resources/gui/illustrations/lamino_angle.png +0 -0
- tomwer-1.2.8/tomwer/resources/gui/illustrations/lamino_angle.svg +0 -509
- tomwer-1.2.8/tomwer/resources/gui/illustrations/lamino_beta_angle.png +0 -0
- tomwer-1.2.8/tomwer/resources/gui/illustrations/lamino_beta_angle.svg +0 -97
- tomwer-1.2.8/tomwer/resources/gui/illustrations/lamino_theta_angle.png +0 -0
- tomwer-1.2.8/tomwer/resources/gui/illustrations/lamino_theta_angle.svg +0 -368
- tomwer-1.2.8/tomwer/resources/gui/illustrations/manual_slice.png +0 -0
- tomwer-1.2.8/tomwer/resources/gui/illustrations/manual_slice.svg +0 -221
- tomwer-1.2.8/tomwer/resources/gui/illustrations/no_rot.svg +0 -334
- tomwer-1.2.8/tomwer/resources/gui/illustrations/psi_angle.png +0 -0
- tomwer-1.2.8/tomwer/resources/gui/illustrations/psi_angle.svg +0 -479
- tomwer-1.2.8/tomwer/resources/gui/illustrations/rotation_center.png +0 -0
- tomwer-1.2.8/tomwer/resources/gui/illustrations/rotation_center.svg +0 -276
- tomwer-1.2.8/tomwer/resources/gui/illustrations/slice_stack.png +0 -0
- tomwer-1.2.8/tomwer/resources/gui/illustrations/slice_stack.svg +0 -266
- tomwer-1.2.8/tomwer/resources/gui/illustrations/xy_slice.png +0 -0
- tomwer-1.2.8/tomwer/resources/gui/illustrations/xy_slice.svg +0 -269
- tomwer-1.2.8/tomwer/resources/gui/illustrations/xz_slice.png +0 -0
- tomwer-1.2.8/tomwer/resources/gui/illustrations/xz_slice.svg +0 -270
- tomwer-1.2.8/tomwer/resources/gui/illustrations/yz_slice.png +0 -0
- tomwer-1.2.8/tomwer/resources/gui/illustrations/yz_slice.svg +0 -270
- tomwer-1.2.8/tomwer/synctools/stacks/edit/darkflatpatch.py +0 -164
- tomwer-1.2.8/tomwer/synctools/stacks/edit/imagekeyeditor.py +0 -135
- tomwer-1.2.8/tomwer/synctools/stacks/reconstruction/axis.py +0 -218
- tomwer-1.2.8/tomwer/synctools/stacks/reconstruction/castvolume.py +0 -197
- tomwer-1.2.8/tomwer/synctools/stacks/reconstruction/dkrefcopy.py +0 -188
- tomwer-1.2.8/tomwer/synctools/stacks/reconstruction/lamino.py +0 -233
- tomwer-1.2.8/tomwer/synctools/stacks/reconstruction/nabu.py +0 -205
- tomwer-1.2.8/tomwer/synctools/stacks/reconstruction/normalization.py +0 -136
- tomwer-1.2.8/tomwer/synctools/stacks/reconstruction/saaxis.py +0 -182
- tomwer-1.2.8/tomwer/synctools/stacks/reconstruction/sadeltabeta.py +0 -183
- tomwer-1.2.8/tomwer/synctools/test/test_darkRefs.py +0 -474
- tomwer-1.2.8/tomwer/synctools/test/test_foldertransfer.py +0 -407
- tomwer-1.2.8/tomwer/synctools/test/test_scanstages.py +0 -162
- tomwer-1.2.8/tomwer/synctools/utils/scanstages.py +0 -207
- tomwer-1.2.8/tomwer/tests/conftest.py +0 -51
- tomwer-1.2.8/tomwer/tests/test_scripts.py +0 -111
- tomwer-1.2.8/tomwer/tests/utils/__init__.py +0 -247
- tomwer-1.2.8/tomwer/tests/utils/utilstest.py +0 -220
- tomwer-1.2.8/tomwer/version.py +0 -134
- tomwer-1.2.8/tomwer.egg-info/PKG-INFO +0 -291
- tomwer-1.2.8/tomwer.egg-info/SOURCES.txt +0 -789
- tomwer-1.2.8/tomwer.egg-info/requires.txt +0 -168
- {tomwer-1.2.8 → tomwer-1.3.10}/LICENSE +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/MANIFEST.in +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/README.rst +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/orange/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/orange/managedprocess.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/orange/settings.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/state_summary.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/tutorials/EBS_tomo_listener.ows +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/tutorials/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/tutorials/append_raw_darks_and_flats_frames_to_NXtomos.ows +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/tutorials/cast_volume.ows +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/tutorials/copy_reduced_darks_and_flats_meth1.ows +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/tutorials/copy_reduced_darks_and_flats_meth2.ows +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/tutorials/default_cor_search.ows +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/tutorials/hello_world_python_script.ows +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/tutorials/simple_slice_reconstruction.ows +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/tutorials/simple_slice_reconstruction_on_slurm.ows +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/tutorials/using_saaxis_to_find_cor.ows +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/cluster/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/cluster/icons/slurm.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/cluster/icons/slurm.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/AdvancementOW.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/DataTransfertOW.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/DataWatcherOW.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/FilterOW.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/ReduceDarkFlatSelectorOW.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/TimerOW.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/TomoObjSerieOW.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/advancement.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/advancement.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/concatenate_nxtomos.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/concatenate_nxtomos.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/datadiscover.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/datadiscover.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/datalistener.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/datalistener.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/datawatcher.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/edf2nx.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/edf2nx.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/email.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/email.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/esrf.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/folder-transfert.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/image_key_upgrader.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/namefilter.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/namefilter.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/notification.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/notification.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/nxtomomill.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/nxtomomill.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/progress.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/reduced_darkflat_selector.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/reduced_darkflat_selector.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/scanlist.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/scanselector.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/scanselector.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/time.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/tomoobjserie.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/tomoobjserie.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/tomwer.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/validator.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/validatorcrack.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/volumeselector.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/volumeselector.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/volumesymlink.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/control/icons/volumesymlink.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/debugtools/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/debugtools/icons/hammer.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/debugtools/icons/hammer.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/debugtools/icons/inspector.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/debugtools/icons/inspector.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/edit/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/edit/icons/image_key_editor.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/edit/icons/image_key_editor.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/edit/test/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/edit/test/test_dark_flat_patch.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/edit/test/test_image_key_editor.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/edit/test/test_image_key_upgrader.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/icons/tomwer.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/icons/tomwer_build.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/icons/tomwer_build.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/icons/tomwer_cluster.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/icons/tomwer_cluster.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/icons/tomwer_control.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/icons/tomwer_control.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/icons/tomwer_debug_tools.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/icons/tomwer_debug_tools.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/icons/tomwer_edit.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/icons/tomwer_edit.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/icons/tomwer_other.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/icons/tomwer_other.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/icons/tomwer_stitching.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/icons/tomwer_stitching.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/icons/tomwer_visu.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/icons/tomwer_visu.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/other/PythonScriptOW.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/other/TomoObjsHub.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/other/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/other/icons/PythonScript.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/other/icons/hub.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/other/icons/hub.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/axis.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/axis.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/bricks.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/darkref.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/darkref.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/esrf.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_prepare_weights_double.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_prepare_weights_double.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/norm_I.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/norm_I.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/refCopy.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/refCopy.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/saaxis.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/saaxis.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/tomogui.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/reconstruction/icons/tomwer.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/stitching/StitcherOW.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/stitching/ZStitchingConfigOW.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/stitching/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/utils.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/RadioStackOW.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/SliceStackOW.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/diff.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/diff.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/esrf.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/eye.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/eyecrack.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/liveslice.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/liveslice.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/radiosstack.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/radiosstack.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/sinogramviewer.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/slicesstack.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/slicesstack.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/tomwer.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/setup.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/app/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/app/canvas_launcher/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/app/canvas_launcher/splash.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/app/canvas_launcher/widgetsscheme.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/app/nxtomoeditor.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/app/patchrawdarkflat.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/app/reducedarkflat.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/app/rsync.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/app/stopdatalistener.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/cluster/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/futureobject.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/log/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/log/processlog.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/cluster/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/cluster/supervisor.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/conditions/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/control/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/control/datadiscovery.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/control/datalistener/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/control/datalistener/rpcserver.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/control/datawatcher/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/control/datawatcher/datawatcher.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/control/datawatcher/datawatcherobserver.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/control/datawatcher/datawatcherprocess.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/control/datawatcher/edfdwprocess.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/control/datawatcher/hdf5dwprocess.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/control/datawatcher/status.py +0 -0
- /tomwer-1.2.8/tomwer/core/process/control/email.py → /tomwer-1.3.10/tomwer/core/process/control/emailnotifier.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/control/scanlist.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/control/scanselector.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/control/singletomoobj.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/control/test/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/control/tomoobjserie.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/control/volumeselector.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/edit/__init__.py +0 -0
- {tomwer-1.2.8/tomwer/core/process/reconstruction/darkref → tomwer-1.3.10/tomwer/core/process/icat}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/reconstruction/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/reconstruction/axis/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/reconstruction/axis/anglemode.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/reconstruction/axis/projectiontype.py +0 -0
- {tomwer-1.2.8/tomwer/core/process/reconstruction/nabu → tomwer-1.3.10/tomwer/core/process/reconstruction/darkref}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/reconstruction/darkref/settings.py +0 -0
- {tomwer-1.2.8/tomwer/core/process/reconstruction/test → tomwer-1.3.10/tomwer/core/process/reconstruction/nabu}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/reconstruction/nabu/target.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/reconstruction/normalization/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/reconstruction/normalization/normalization.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/reconstruction/normalization/params.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/reconstruction/paramsbase.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/reconstruction/saaxis/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/reconstruction/saaxis/params.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/reconstruction/sadeltabeta/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/reconstruction/sadeltabeta/params.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/reconstruction/scores/__init__.py +0 -0
- {tomwer-1.2.8/tomwer/core/process/reconstruction/utils → tomwer-1.3.10/tomwer/core/process/reconstruction/test}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/reconstruction/test/test_paramsbase.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/reconstruction/test/test_utils.py +0 -0
- {tomwer-1.2.8/tomwer/core/process/script → tomwer-1.3.10/tomwer/core/process/reconstruction/utils}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/reconstruction/utils/cor.py +0 -0
- {tomwer-1.2.8/tomwer/core/process/stitching → tomwer-1.3.10/tomwer/core/process/script}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/script/python.py +0 -0
- {tomwer-1.2.8/tomwer/core/process/test → tomwer-1.3.10/tomwer/core/process/stitching}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/stitching/metadataholder.py +0 -0
- {tomwer-1.2.8/tomwer/core/process/visualization → tomwer-1.3.10/tomwer/core/process/test}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/test/test_conditions.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/test/test_data_listener.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/test/test_data_watcher.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/test/test_timer.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/utils.py +0 -0
- {tomwer-1.2.8/tomwer/core/scan/test → tomwer-1.3.10/tomwer/core/process/visualization}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/visualization/dataviewer.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/visualization/diffviewer.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/visualization/imagestackviewer.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/visualization/liveslice.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/visualization/radiostack.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/visualization/samplemoved.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/visualization/sinogramviewer.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/visualization/slicestack.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/process/visualization/volumeviewer.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/progress.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/scan/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/scan/futurescan.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/scan/helicalmetadata.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/scan/scantype.py +0 -0
- {tomwer-1.2.8/tomwer/core → tomwer-1.3.10/tomwer/core/scan}/test/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/signal.py +0 -0
- {tomwer-1.2.8/tomwer/gui/cluster → tomwer-1.3.10/tomwer/core/test}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/utils/Singleton.py +0 -0
- {tomwer-1.2.8/tomwer/gui/cluster/test → tomwer-1.3.10/tomwer/core/utils}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/utils/char.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/utils/ftseriesutils.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/utils/gpu.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/utils/image.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/utils/locker.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/utils/logconfig.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/utils/normalization.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/utils/resource.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/utils/slurm.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/utils/threads.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/utils/time.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/utils/volumeutils.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/volume/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/core/volume/volumebase.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/__init__.py +0 -0
- {tomwer-1.2.8/tomwer/gui/conditions → tomwer-1.3.10/tomwer/gui/cluster}/__init__.py +0 -0
- {tomwer-1.2.8/tomwer/gui/control → tomwer-1.3.10/tomwer/gui/cluster/test}/__init__.py +0 -0
- {tomwer-1.2.8/tomwer/gui/control/serie → tomwer-1.3.10/tomwer/gui/conditions}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/conditions/filter.py +0 -0
- {tomwer-1.2.8/tomwer/gui/debugtools → tomwer-1.3.10/tomwer/gui/configuration}/__init__.py +0 -0
- {tomwer-1.2.8/tomwer/gui/edit → tomwer-1.3.10/tomwer/gui/control}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/datadiscovery.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/datareacheractions.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/datatransfert.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/datavalidator.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/datawatcher/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/datawatcher/configuration.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/datawatcher/datawatcherobserver.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/nxtomomill.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/scanselectorwidget.py +0 -0
- {tomwer-1.2.8/tomwer/gui/reconstruction → tomwer-1.3.10/tomwer/gui/control/serie}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/serie/nxtomoconcatenate.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/serie/seriewaiter.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/singletomoobj.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/test/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/test/test_datadiscovery.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/test/test_datalist.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/test/test_datalistener.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/test/test_datavalidator.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/test/test_inputwidget.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/test/test_process_manager.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/test/test_reducedarkflat_selector.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/test/test_scanselector.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/test/test_volume_dialog.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/test/test_volumeselector.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/control/volumeselectorwidget.py +0 -0
- {tomwer-1.2.8/tomwer/gui/reconstruction/normalization → tomwer-1.3.10/tomwer/gui/debugtools}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/debugtools/objectinspector.py +0 -0
- {tomwer-1.2.8/tomwer/gui/reconstruction/saaxis → tomwer-1.3.10/tomwer/gui/edit}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/edit/test/__init__.py +0 -0
- {tomwer-1.2.8/tomwer/gui/reconstruction/scores → tomwer-1.3.10/tomwer/gui/icat}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/icons.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/illustrations.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/qconfigfile.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/qlefilesystem.py +0 -0
- {tomwer-1.2.8/tomwer/gui/reconstruction/test → tomwer-1.3.10/tomwer/gui/reconstruction}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/reconstruction/axis/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/reconstruction/darkref/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/reconstruction/nabu/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/reconstruction/nabu/nabuconfig/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/reconstruction/nabu/slurm.py +0 -0
- {tomwer-1.2.8/tomwer/gui/stitching → tomwer-1.3.10/tomwer/gui/reconstruction/normalization}/__init__.py +0 -0
- {tomwer-1.2.8/tomwer/gui/stitching/config → tomwer-1.3.10/tomwer/gui/reconstruction/saaxis}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/reconstruction/saaxis/sliceselector.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/reconstruction/sadeltabeta/__init__.py +0 -0
- {tomwer-1.2.8/tomwer/gui/stitching/z_stitching → tomwer-1.3.10/tomwer/gui/reconstruction/scores}/__init__.py +0 -0
- {tomwer-1.2.8/tomwer/gui/visualization → tomwer-1.3.10/tomwer/gui/reconstruction/test}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/samplemoved/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/samplemoved/selectiontable.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/stacks.py +0 -0
- {tomwer-1.2.8/tomwer/io → tomwer-1.3.10/tomwer/gui/stitching}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/stitching/axisorderedlist.py +0 -0
- {tomwer-1.2.8/tomwer/synctools/stacks/control → tomwer-1.3.10/tomwer/gui/stitching/config}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/stitching/config/stitchingstrategies.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/stitching/config/tomoobjdetails.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/stitching/metadataholder.py +0 -0
- {tomwer-1.2.8/tomwer/synctools/stacks/edit → tomwer-1.3.10/tomwer/gui/stitching/z_stitching}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/test/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/test/test_axis_gui.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/test/test_qfolder_dialog.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/utils/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/utils/completer.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/utils/flow.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/utils/illustrations.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/utils/lineselector/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/utils/qt_utils.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/utils/sandboxes.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/utils/scrollarea.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/utils/slider.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/utils/splashscreen.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/utils/utils.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/utils/waiterthread.py +0 -0
- {tomwer-1.2.8/tomwer/synctools/stacks/reconstruction → tomwer-1.3.10/tomwer/gui/visualization}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/visualization/diffviewer/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/visualization/fullscreenplot.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/visualization/nxtomometadata.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/visualization/reconstructionparameters.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/visualization/test/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/visualization/test/test_dataviewer.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/visualization/test/test_reconstruction_parameters.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/visualization/tomoobjoverview.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/gui/visualization/volumeoverview.py +0 -0
- {tomwer-1.2.8/tomwer/synctools/test → tomwer-1.3.10/tomwer/io}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/io/utils/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/Imagej_icon.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/a.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/a.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/add.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/add.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/advanced_user.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/advanced_user.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/axis.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/axis.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/background.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/background.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/basic_user.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/basic_user.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/cfg_file_active.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/cfg_file_active.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/cfg_file_inactive.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/cfg_file_inactive.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/compare_mode_a_minus_b.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/compare_mode_a_minus_b.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/compose.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/compose.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/datalistener_activate.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/datalistener_activate.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/datalistener_deactivate.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/datalistener_deactivate.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/delta_beta.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/delta_beta.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/exit.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/exit.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/full_screen.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/full_screen.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/hammer.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/hammer.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/health.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/health.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/high_speed.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/high_speed.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/history.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/hourglass.npy +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/imageNotFound.npy +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/information.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/information.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/input.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/input.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/invisible.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/invisible.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/lineselection.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/lineselection.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/list_selection.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/list_selection.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/locked.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/locked.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/log.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/log.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/loop.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/low_speed.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/low_speed.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/medium_low_speed.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/medium_low_speed.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/minimalistic_user.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/minimalistic_user.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/multi-document-save.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/multi-document-save.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/nabu.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/nabu.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/output.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/output.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/parameters.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/plot-xleft.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/plot-xleft.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/plot-xright.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/plot-xright.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/range_selection.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/range_selection.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/results.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/results.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/rm.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/rm.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/roman_four.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/roman_four.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/roman_one.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/roman_one.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/roman_three.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/roman_three.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/roman_two.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/roman_two.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/single_selection.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/single_selection.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/sinogram.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/slurm.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/slurm_active.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/slurm_active.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/slurm_deactive.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/slurm_deactive.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/stitching_modeRaw.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/stitching_modeRaw.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/stitching_modeRefine.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/stitching_modeRefine.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/switch.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/tomwer.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/tomwer_large.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/unlocked.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/unlocked.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/unsharp_mask.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/update_stitching_preview.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/vignettes.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/vignettes.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/visible.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/visible.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/warning.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/icons/warning.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/illustrations/ctf_z1.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/illustrations/ctf_z1.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/illustrations/flow_down.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/illustrations/flow_down.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/illustrations/flow_right.png +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/resources/gui/illustrations/flow_right.svg +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/synctools/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/synctools/axis.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/synctools/darkref.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/synctools/datalistener.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/synctools/datatransfert.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/synctools/imageloaderthread.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/synctools/rsyncmanager.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/synctools/saaxis.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/synctools/sadeltabeta.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/synctools/stacks/__init__.py +0 -0
- {tomwer-1.2.8/tomwer/synctools/utils → tomwer-1.3.10/tomwer/synctools/stacks/control}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/synctools/stacks/control/datalistener.py +0 -0
- {tomwer-1.2.8/tomwer/tests → tomwer-1.3.10/tomwer/synctools/stacks/edit}/__init__.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/synctools/stacks/processingstack.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/tests/test_utils.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer/utils.py +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer.egg-info/dependency_links.txt +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer.egg-info/entry_points.txt +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer.egg-info/namespace_packages.txt +0 -0
- {tomwer-1.2.8 → tomwer-1.3.10}/tomwer.egg-info/top_level.txt +0 -0
tomwer-1.3.10/PKG-INFO
ADDED
@@ -0,0 +1,306 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: tomwer
|
3
|
+
Version: 1.3.10
|
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
|
+
License-File: LICENSE
|
24
|
+
Requires-Dist: numpy
|
25
|
+
Requires-Dist: setuptools
|
26
|
+
Requires-Dist: psutil
|
27
|
+
Requires-Dist: silx[full]>=2.0
|
28
|
+
Requires-Dist: tomoscan>=2.0.0a11
|
29
|
+
Requires-Dist: nxtomo>=1.2.3rc1
|
30
|
+
Requires-Dist: nxtomomill>=1.0dev
|
31
|
+
Requires-Dist: processview>=1.3
|
32
|
+
Requires-Dist: ewoks>=0.1.1
|
33
|
+
Requires-Dist: ewoksorange==0.6
|
34
|
+
Requires-Dist: sluurp>=0.3.3
|
35
|
+
Requires-Dist: packaging
|
36
|
+
Requires-Dist: flufl-lock
|
37
|
+
Requires-Dist: pyunitsystem>=1.1.0
|
38
|
+
Provides-Extra: full-base
|
39
|
+
Requires-Dist: orange-canvas-core; extra == "full-base"
|
40
|
+
Requires-Dist: orange-widget-base; extra == "full-base"
|
41
|
+
Requires-Dist: ewoks[orange]>=0.1.1; extra == "full-base"
|
42
|
+
Requires-Dist: rsyncmanager; extra == "full-base"
|
43
|
+
Requires-Dist: graypy; extra == "full-base"
|
44
|
+
Requires-Dist: fabio; extra == "full-base"
|
45
|
+
Requires-Dist: h5py>=3; extra == "full-base"
|
46
|
+
Requires-Dist: lxml; extra == "full-base"
|
47
|
+
Requires-Dist: werkzeug; extra == "full-base"
|
48
|
+
Requires-Dist: json-rpc; extra == "full-base"
|
49
|
+
Requires-Dist: scipy; extra == "full-base"
|
50
|
+
Requires-Dist: Pillow; extra == "full-base"
|
51
|
+
Requires-Dist: glymur; extra == "full-base"
|
52
|
+
Requires-Dist: resource; extra == "full-base"
|
53
|
+
Requires-Dist: tifffile; extra == "full-base"
|
54
|
+
Requires-Dist: hdf5plugin; extra == "full-base"
|
55
|
+
Requires-Dist: pyicat_plus; extra == "full-base"
|
56
|
+
Provides-Extra: full-no-nabu
|
57
|
+
Requires-Dist: orange-canvas-core; extra == "full-no-nabu"
|
58
|
+
Requires-Dist: orange-widget-base; extra == "full-no-nabu"
|
59
|
+
Requires-Dist: ewoks[orange]>=0.1.1; extra == "full-no-nabu"
|
60
|
+
Requires-Dist: rsyncmanager; extra == "full-no-nabu"
|
61
|
+
Requires-Dist: graypy; extra == "full-no-nabu"
|
62
|
+
Requires-Dist: fabio; extra == "full-no-nabu"
|
63
|
+
Requires-Dist: h5py>=3; extra == "full-no-nabu"
|
64
|
+
Requires-Dist: lxml; extra == "full-no-nabu"
|
65
|
+
Requires-Dist: werkzeug; extra == "full-no-nabu"
|
66
|
+
Requires-Dist: json-rpc; extra == "full-no-nabu"
|
67
|
+
Requires-Dist: scipy; extra == "full-no-nabu"
|
68
|
+
Requires-Dist: Pillow; extra == "full-no-nabu"
|
69
|
+
Requires-Dist: glymur; extra == "full-no-nabu"
|
70
|
+
Requires-Dist: resource; extra == "full-no-nabu"
|
71
|
+
Requires-Dist: tifffile; extra == "full-no-nabu"
|
72
|
+
Requires-Dist: hdf5plugin; extra == "full-no-nabu"
|
73
|
+
Requires-Dist: pyicat_plus; extra == "full-no-nabu"
|
74
|
+
Provides-Extra: full-no-cuda
|
75
|
+
Requires-Dist: orange-canvas-core; extra == "full-no-cuda"
|
76
|
+
Requires-Dist: orange-widget-base; extra == "full-no-cuda"
|
77
|
+
Requires-Dist: ewoks[orange]>=0.1.1; extra == "full-no-cuda"
|
78
|
+
Requires-Dist: rsyncmanager; extra == "full-no-cuda"
|
79
|
+
Requires-Dist: graypy; extra == "full-no-cuda"
|
80
|
+
Requires-Dist: fabio; extra == "full-no-cuda"
|
81
|
+
Requires-Dist: h5py>=3; extra == "full-no-cuda"
|
82
|
+
Requires-Dist: lxml; extra == "full-no-cuda"
|
83
|
+
Requires-Dist: werkzeug; extra == "full-no-cuda"
|
84
|
+
Requires-Dist: json-rpc; extra == "full-no-cuda"
|
85
|
+
Requires-Dist: scipy; extra == "full-no-cuda"
|
86
|
+
Requires-Dist: Pillow; extra == "full-no-cuda"
|
87
|
+
Requires-Dist: glymur; extra == "full-no-cuda"
|
88
|
+
Requires-Dist: resource; extra == "full-no-cuda"
|
89
|
+
Requires-Dist: tifffile; extra == "full-no-cuda"
|
90
|
+
Requires-Dist: hdf5plugin; extra == "full-no-cuda"
|
91
|
+
Requires-Dist: pyicat_plus; extra == "full-no-cuda"
|
92
|
+
Requires-Dist: nabu>=2023.3.1dev; extra == "full-no-cuda"
|
93
|
+
Provides-Extra: full
|
94
|
+
Requires-Dist: orange-canvas-core; extra == "full"
|
95
|
+
Requires-Dist: orange-widget-base; extra == "full"
|
96
|
+
Requires-Dist: ewoks[orange]>=0.1.1; extra == "full"
|
97
|
+
Requires-Dist: rsyncmanager; extra == "full"
|
98
|
+
Requires-Dist: graypy; extra == "full"
|
99
|
+
Requires-Dist: fabio; extra == "full"
|
100
|
+
Requires-Dist: h5py>=3; extra == "full"
|
101
|
+
Requires-Dist: lxml; extra == "full"
|
102
|
+
Requires-Dist: werkzeug; extra == "full"
|
103
|
+
Requires-Dist: json-rpc; extra == "full"
|
104
|
+
Requires-Dist: scipy; extra == "full"
|
105
|
+
Requires-Dist: Pillow; extra == "full"
|
106
|
+
Requires-Dist: glymur; extra == "full"
|
107
|
+
Requires-Dist: resource; extra == "full"
|
108
|
+
Requires-Dist: tifffile; extra == "full"
|
109
|
+
Requires-Dist: hdf5plugin; extra == "full"
|
110
|
+
Requires-Dist: pyicat_plus; extra == "full"
|
111
|
+
Requires-Dist: nabu[full]>=2023.3.1dev; extra == "full"
|
112
|
+
Requires-Dist: pycuda; extra == "full"
|
113
|
+
Requires-Dist: scikit-cuda; extra == "full"
|
114
|
+
Provides-Extra: doc
|
115
|
+
Requires-Dist: orange-canvas-core; extra == "doc"
|
116
|
+
Requires-Dist: orange-widget-base; extra == "doc"
|
117
|
+
Requires-Dist: ewoks[orange]>=0.1.1; extra == "doc"
|
118
|
+
Requires-Dist: rsyncmanager; extra == "doc"
|
119
|
+
Requires-Dist: graypy; extra == "doc"
|
120
|
+
Requires-Dist: fabio; extra == "doc"
|
121
|
+
Requires-Dist: h5py>=3; extra == "doc"
|
122
|
+
Requires-Dist: lxml; extra == "doc"
|
123
|
+
Requires-Dist: werkzeug; extra == "doc"
|
124
|
+
Requires-Dist: json-rpc; extra == "doc"
|
125
|
+
Requires-Dist: scipy; extra == "doc"
|
126
|
+
Requires-Dist: Pillow; extra == "doc"
|
127
|
+
Requires-Dist: glymur; extra == "doc"
|
128
|
+
Requires-Dist: resource; extra == "doc"
|
129
|
+
Requires-Dist: tifffile; extra == "doc"
|
130
|
+
Requires-Dist: hdf5plugin; extra == "doc"
|
131
|
+
Requires-Dist: pyicat_plus; extra == "doc"
|
132
|
+
Requires-Dist: nabu>=2023.3.1dev; extra == "doc"
|
133
|
+
Requires-Dist: Sphinx>=4.0.0; extra == "doc"
|
134
|
+
Requires-Dist: nbsphinx; extra == "doc"
|
135
|
+
Requires-Dist: pandoc; extra == "doc"
|
136
|
+
Requires-Dist: jupyterlab; extra == "doc"
|
137
|
+
Requires-Dist: pydata_sphinx_theme; extra == "doc"
|
138
|
+
Requires-Dist: sphinx-design; extra == "doc"
|
139
|
+
Requires-Dist: sphinx-autodoc-typehints; extra == "doc"
|
140
|
+
Provides-Extra: dev-spec
|
141
|
+
Requires-Dist: black; extra == "dev-spec"
|
142
|
+
Requires-Dist: flake8; extra == "dev-spec"
|
143
|
+
Requires-Dist: timeout-decorator; extra == "dev-spec"
|
144
|
+
Requires-Dist: pyopencl; extra == "dev-spec"
|
145
|
+
Provides-Extra: dev
|
146
|
+
Requires-Dist: orange-canvas-core; extra == "dev"
|
147
|
+
Requires-Dist: orange-widget-base; extra == "dev"
|
148
|
+
Requires-Dist: ewoks[orange]>=0.1.1; extra == "dev"
|
149
|
+
Requires-Dist: rsyncmanager; extra == "dev"
|
150
|
+
Requires-Dist: graypy; extra == "dev"
|
151
|
+
Requires-Dist: fabio; extra == "dev"
|
152
|
+
Requires-Dist: h5py>=3; extra == "dev"
|
153
|
+
Requires-Dist: lxml; extra == "dev"
|
154
|
+
Requires-Dist: werkzeug; extra == "dev"
|
155
|
+
Requires-Dist: json-rpc; extra == "dev"
|
156
|
+
Requires-Dist: scipy; extra == "dev"
|
157
|
+
Requires-Dist: Pillow; extra == "dev"
|
158
|
+
Requires-Dist: glymur; extra == "dev"
|
159
|
+
Requires-Dist: resource; extra == "dev"
|
160
|
+
Requires-Dist: tifffile; extra == "dev"
|
161
|
+
Requires-Dist: hdf5plugin; extra == "dev"
|
162
|
+
Requires-Dist: pyicat_plus; extra == "dev"
|
163
|
+
Requires-Dist: nabu[full]>=2023.3.1dev; extra == "dev"
|
164
|
+
Requires-Dist: pycuda; extra == "dev"
|
165
|
+
Requires-Dist: scikit-cuda; extra == "dev"
|
166
|
+
Requires-Dist: black; extra == "dev"
|
167
|
+
Requires-Dist: flake8; extra == "dev"
|
168
|
+
Requires-Dist: timeout-decorator; extra == "dev"
|
169
|
+
Requires-Dist: pyopencl; extra == "dev"
|
170
|
+
Provides-Extra: dev-no-cuda
|
171
|
+
Requires-Dist: orange-canvas-core; extra == "dev-no-cuda"
|
172
|
+
Requires-Dist: orange-widget-base; extra == "dev-no-cuda"
|
173
|
+
Requires-Dist: ewoks[orange]>=0.1.1; extra == "dev-no-cuda"
|
174
|
+
Requires-Dist: rsyncmanager; extra == "dev-no-cuda"
|
175
|
+
Requires-Dist: graypy; extra == "dev-no-cuda"
|
176
|
+
Requires-Dist: fabio; extra == "dev-no-cuda"
|
177
|
+
Requires-Dist: h5py>=3; extra == "dev-no-cuda"
|
178
|
+
Requires-Dist: lxml; extra == "dev-no-cuda"
|
179
|
+
Requires-Dist: werkzeug; extra == "dev-no-cuda"
|
180
|
+
Requires-Dist: json-rpc; extra == "dev-no-cuda"
|
181
|
+
Requires-Dist: scipy; extra == "dev-no-cuda"
|
182
|
+
Requires-Dist: Pillow; extra == "dev-no-cuda"
|
183
|
+
Requires-Dist: glymur; extra == "dev-no-cuda"
|
184
|
+
Requires-Dist: resource; extra == "dev-no-cuda"
|
185
|
+
Requires-Dist: tifffile; extra == "dev-no-cuda"
|
186
|
+
Requires-Dist: hdf5plugin; extra == "dev-no-cuda"
|
187
|
+
Requires-Dist: pyicat_plus; extra == "dev-no-cuda"
|
188
|
+
Requires-Dist: nabu>=2023.3.1dev; extra == "dev-no-cuda"
|
189
|
+
Requires-Dist: black; extra == "dev-no-cuda"
|
190
|
+
Requires-Dist: flake8; extra == "dev-no-cuda"
|
191
|
+
Requires-Dist: timeout-decorator; extra == "dev-no-cuda"
|
192
|
+
Requires-Dist: pyopencl; extra == "dev-no-cuda"
|
193
|
+
Provides-Extra: test
|
194
|
+
Requires-Dist: pytest-asyncio; extra == "test"
|
195
|
+
Requires-Dist: tomoscan[test]>=2.0.2rc17; extra == "test"
|
196
|
+
Provides-Extra: setup-requires
|
197
|
+
Requires-Dist: setuptools; extra == "setup-requires"
|
198
|
+
Requires-Dist: numpy>=1.12; extra == "setup-requires"
|
199
|
+
|
200
|
+
tomwer
|
201
|
+
======
|
202
|
+
|
203
|
+
tomwer is offering tools to automate acquisition and reconstruction processes for Tomography.
|
204
|
+
It contains:
|
205
|
+
|
206
|
+
- a library to access each acquisition process individually
|
207
|
+
- gui and applications to control main processes (reconstruction, data transfert...) and execute them as a stand alone application.
|
208
|
+
- an orange add-on to help users defining their own workflow (http://orange.biolab.si)
|
209
|
+
|
210
|
+
|
211
|
+
|
212
|
+
.. image:: http://www.edna-site.org/pub/doc/tomwer/extra/tomwer_start_short.gif
|
213
|
+
|
214
|
+
|
215
|
+
.. |Gitlab Status| image:: https://gitlab.esrf.fr/tomotools/tomwer/badges/master/pipeline.svg
|
216
|
+
:target: https://gitlab.esrf.fr/tomotools/tomwer/pipelines
|
217
|
+
|
218
|
+
|
219
|
+
Documentation
|
220
|
+
-------------
|
221
|
+
|
222
|
+
`Latest documentation <https://tomotools.gitlab-pages.esrf.fr/tomwer/>`_
|
223
|
+
|
224
|
+
|
225
|
+
Installation
|
226
|
+
------------
|
227
|
+
|
228
|
+
Step 1 - tomwer
|
229
|
+
'''''''''''''''
|
230
|
+
|
231
|
+
To install it with all 'features':
|
232
|
+
|
233
|
+
.. code-block:: bash
|
234
|
+
|
235
|
+
pip install tomwer[full]
|
236
|
+
|
237
|
+
alternatively you can install the master branch from
|
238
|
+
|
239
|
+
.. code-block:: bash
|
240
|
+
|
241
|
+
pip install git+https://gitlab.esrf.fr/tomotools/tomwer/#egg=tomwer[full]
|
242
|
+
|
243
|
+
|
244
|
+
Step 2 - update orange-canvas-core and orange-widget-base (Optional)
|
245
|
+
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
|
246
|
+
|
247
|
+
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
|
248
|
+
|
249
|
+
.. code-block:: bash
|
250
|
+
|
251
|
+
pip install git+https://github.com/payno/orange-canvas-core --no-deps --upgrade
|
252
|
+
pip install git+https://github.com/payno/orange-widget-base --no-deps --upgrade
|
253
|
+
|
254
|
+
|
255
|
+
Launching applications
|
256
|
+
::::::::::::::::::::::
|
257
|
+
|
258
|
+
After the installation tomwer is embedding several applications.
|
259
|
+
|
260
|
+
Those applications can be launched by calling:
|
261
|
+
|
262
|
+
.. code-block:: bash
|
263
|
+
|
264
|
+
tomwer appName {options}
|
265
|
+
|
266
|
+
.. note:: if you only call `tomwer` then the man page will be displayed.
|
267
|
+
|
268
|
+
.. note:: You can access each application help using ``
|
269
|
+
|
270
|
+
.. code-block:: bash
|
271
|
+
|
272
|
+
tomwer appName --help
|
273
|
+
|
274
|
+
|
275
|
+
tomwer canvas - orange canvas
|
276
|
+
'''''''''''''''''''''''''''''
|
277
|
+
|
278
|
+
You can launch the canvas to create workflows from the different 'bricks'
|
279
|
+
|
280
|
+
.. code-block:: bash
|
281
|
+
|
282
|
+
tomwer canvas
|
283
|
+
|
284
|
+
.. note:: you can also use `orange-canvas`
|
285
|
+
|
286
|
+
.. note:: if your installed a virtual environment do not forget to active it :
|
287
|
+
|
288
|
+
.. code-block:: bash
|
289
|
+
|
290
|
+
source myvirtualenv/bin/activate
|
291
|
+
|
292
|
+
|
293
|
+
Documentation
|
294
|
+
:::::::::::::
|
295
|
+
|
296
|
+
.. code-block:: bash
|
297
|
+
|
298
|
+
sphinx-build doc build/html
|
299
|
+
|
300
|
+
The documentation is build in doc/build/html and the entry point is index.html
|
301
|
+
|
302
|
+
.. code-block:: bash
|
303
|
+
|
304
|
+
firefox build/html/index.html
|
305
|
+
|
306
|
+
.. 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,58 @@
|
|
1
|
+
<?xml version='1.0' encoding='utf-8'?>
|
2
|
+
<scheme version="2.0" title="Reconstruction of a volume and publication to icat" 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="(818.0, 248.0)" />
|
9
|
+
<node id="5" name="nabu volume reconstruction" qualified_name="orangecontrib.tomwer.widgets.reconstruction.NabuVolumeOW.NabuVolumeOW" project_name="tomwer" version="" title="nabu volume reconstruction" position="(812.0, 391.0)" />
|
10
|
+
<node id="6" name="volume viewer" qualified_name="orangecontrib.tomwer.widgets.visualization.VolumeViewerOW.VolumeViewerOW" project_name="tomwer" version="" title="volume viewer" position="(986.75, 383.25)" />
|
11
|
+
<node id="7" name="create raw data screenshots" qualified_name="orangecontrib.tomwer.widgets.icat.RawDataScreenshotCreatorOW.RawDataScreenshotCreatorOW" project_name="tomwer" version="" title="create raw data screenshots" position="(321.0, 509.0)" />
|
12
|
+
<node id="8" name="save to gallery and publish" qualified_name="orangecontrib.tomwer.widgets.icat.SaveToGalleryAndPublishOW.SaveToGalleryAndPublishOW" project_name="tomwer" version="" title="save to gallery and publish" position="(506.0, 510.0)" />
|
13
|
+
<node id="9" name="save to gallery and publish" qualified_name="orangecontrib.tomwer.widgets.icat.SaveToGalleryAndPublishOW.SaveToGalleryAndPublishOW" project_name="tomwer" version="" title="save to gallery and publish (1)" position="(731.0, 514.0)" />
|
14
|
+
<node id="10" name="Publish processed data to icat" qualified_name="orangecontrib.tomwer.widgets.icat.PublishProcessedDataOW.PublishProcessedDataOW" project_name="tomwer" version="" title="Publish processed data to icat" position="(990.0, 514.0)" />
|
15
|
+
</nodes>
|
16
|
+
<links>
|
17
|
+
<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" />
|
18
|
+
<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" />
|
19
|
+
<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" />
|
20
|
+
<link id="3" source_node_id="3" sink_node_id="4" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
21
|
+
<link id="4" source_node_id="3" sink_node_id="5" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
22
|
+
<link id="5" source_node_id="5" sink_node_id="6" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
23
|
+
<link id="6" source_node_id="0" sink_node_id="7" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
24
|
+
<link id="7" source_node_id="7" sink_node_id="8" source_channel="screenshots" sink_channel="screenshots" enabled="true" source_channel_id="screenshots" sink_channel_id="screenshots" />
|
25
|
+
<link id="8" source_node_id="3" sink_node_id="9" source_channel="screenshots" sink_channel="screenshots" enabled="true" source_channel_id="screenshots" sink_channel_id="screenshots" />
|
26
|
+
<link id="9" source_node_id="5" sink_node_id="10" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
|
27
|
+
</links>
|
28
|
+
<annotations>
|
29
|
+
<arrow id="0" start="(267.0, 56.0)" end="(194.0, 105.0)" fill="#C1272D" />
|
30
|
+
<text id="1" type="text/plain" rect="(276.25, 17.75, 150.0, 31.0)" font-family="Ubuntu" font-size="16">provide dataset</text>
|
31
|
+
<text id="2" type="text/plain" rect="(146.0, 597.0, 168.0, 89.0)" font-family="Cantarell" font-size="16">create screenshot for raw projection, raw falt and raw dark</text>
|
32
|
+
<text id="3" type="text/plain" rect="(413.0, 612.0, 215.0, 62.0)" font-family="Cantarell" font-size="16">save screenshot to the gallry and publish to icat</text>
|
33
|
+
<arrow id="4" start="(630.0, 605.0)" end="(674.0, 573.0)" fill="#C1272D" />
|
34
|
+
<arrow id="5" start="(475.99999999999994, 612.0)" end="(477.99999999999994, 568.0)" fill="#C1272D" />
|
35
|
+
<arrow id="6" start="(607.0, 387.0)" end="(671.0, 395.0)" fill="#C1272D" />
|
36
|
+
<text id="7" type="text/plain" rect="(449.0, 350.0, 150.0, 51.0)" font-family="Cantarell" font-size="16">screenshot of the reconstructed slice</text>
|
37
|
+
<arrow id="8" start="(235.0, 592.0)" end="(281.0, 521.0)" fill="#C1272D" />
|
38
|
+
<text id="9" type="text/plain" rect="(901.0, 618.0, 179.0, 70.0)" font-family="Cantarell" font-size="16">publish reconstructed volume to icat</text>
|
39
|
+
<arrow id="10" start="(980.0, 621.0)" end="(981.0, 579.0)" fill="#C1272D" />
|
40
|
+
</annotations>
|
41
|
+
<thumbnail />
|
42
|
+
<node_properties>
|
43
|
+
<properties node_id="0" format="literal">{'_scanIDs': [], 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
44
|
+
<properties node_id="1" format="literal">{'_ewoks_default_inputs': {'data': None, 'dark_ref_params': None}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
45
|
+
<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>
|
46
|
+
<properties node_id="3" format="literal">{'_ewoks_default_inputs': {'data': None, 'nabu_params': None}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
47
|
+
<properties node_id="4" format="literal">{'_viewer_config': {}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
48
|
+
<properties node_id="5" format="literal">{'_ewoks_default_inputs': {'data': None, 'nabu_volume_params': None, 'nabu_params': None}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
49
|
+
<properties node_id="6" format="literal">{'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
50
|
+
<properties node_id="7" format="literal">{'_ewoks_default_inputs': {}, '_ewoks_execinfo': {}, '_ewoks_varinfo': {}, 'controlAreaVisible': True, 'default_inputs': {}, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
51
|
+
<properties node_id="8" format="literal">{'_ewoks_default_inputs': {}, '_ewoks_execinfo': {}, '_ewoks_varinfo': {}, 'controlAreaVisible': True, 'default_inputs': {}, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
52
|
+
<properties node_id="9" format="literal">{'_ewoks_default_inputs': {}, '_ewoks_execinfo': {}, '_ewoks_varinfo': {}, 'controlAreaVisible': True, 'default_inputs': {}, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
53
|
+
<properties node_id="10" format="literal">{'_ewoks_default_inputs': {}, '_ewoks_execinfo': {}, '_ewoks_varinfo': {}, 'controlAreaVisible': True, 'default_inputs': {}, 'savedWidgetGeometry': None, '__version__': 1}</properties>
|
54
|
+
</node_properties>
|
55
|
+
<session_state>
|
56
|
+
<window_groups />
|
57
|
+
</session_state>
|
58
|
+
</scheme>
|
@@ -0,0 +1,63 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
###########################################################################
|
3
|
+
# Copyright (C) 2016 European Synchrotron Radiation Facility
|
4
|
+
#
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
10
|
+
# furnished to do so, subject to the following conditions:
|
11
|
+
#
|
12
|
+
# The above copyright notice and this permission notice shall be included in
|
13
|
+
# all copies or substantial portions of the Software.
|
14
|
+
#
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
# THE SOFTWARE.
|
22
|
+
#
|
23
|
+
#############################################################################
|
24
|
+
|
25
|
+
try:
|
26
|
+
from orangecanvas.utils.pkgmeta import get_distribution
|
27
|
+
except ImportError:
|
28
|
+
from pkg_resources import get_distribution
|
29
|
+
|
30
|
+
ICON = "../widgets/icons/tomwer.png"
|
31
|
+
|
32
|
+
BACKGROUND = "#C0CCFF"
|
33
|
+
|
34
|
+
|
35
|
+
# Entry point for main Orange categories/widgets discovery
|
36
|
+
def widget_discovery(discovery):
|
37
|
+
dist = get_distribution("tomwer")
|
38
|
+
pkgs = [
|
39
|
+
"orangecontrib.tomwer.widgets.cluster",
|
40
|
+
"orangecontrib.tomwer.widgets.control",
|
41
|
+
"orangecontrib.tomwer.widgets.debugtools",
|
42
|
+
"orangecontrib.tomwer.widgets.edit",
|
43
|
+
# "orangecontrib.tomwer.widgets.icat",
|
44
|
+
"orangecontrib.tomwer.widgets.reconstruction",
|
45
|
+
# "orangecontrib.tomwer.widgets.stitching",
|
46
|
+
"orangecontrib.tomwer.widgets.visualization",
|
47
|
+
"orangecontrib.tomwer.widgets.other",
|
48
|
+
]
|
49
|
+
for pkg in pkgs:
|
50
|
+
discovery.process_category_package(pkg, distribution=dist)
|
51
|
+
|
52
|
+
|
53
|
+
WIDGET_HELP_PATH = (
|
54
|
+
# Used for development.
|
55
|
+
# You still need to build help pages using
|
56
|
+
# make htmlhelp
|
57
|
+
# inside doc folder
|
58
|
+
# (
|
59
|
+
# "/home/payno/Documents/dev/tomography/tomwer/build/html/canvas/widgets/widgets.html",
|
60
|
+
# None,
|
61
|
+
# ),
|
62
|
+
("https://tomwer.readthedocs.io/en/latest/canvas/widgets/widgets.html", None),
|
63
|
+
)
|
@@ -0,0 +1,230 @@
|
|
1
|
+
import fnmatch
|
2
|
+
import logging
|
3
|
+
import os
|
4
|
+
from typing import Optional
|
5
|
+
|
6
|
+
import h5py
|
7
|
+
from orangewidget import gui, widget
|
8
|
+
from orangewidget.widget import Output
|
9
|
+
from silx.gui import qt
|
10
|
+
from orangewidget.settings import Setting
|
11
|
+
|
12
|
+
import tomwer.core.process.control.datadiscovery
|
13
|
+
from orangecontrib.tomwer.widgets.utils import WidgetLongProcessing
|
14
|
+
from tomwer.core.scan.blissscan import BlissScan
|
15
|
+
from tomwer.core.scan.edfscan import EDFTomoScan
|
16
|
+
from tomwer.core.scan.nxtomoscan import NXtomoScan
|
17
|
+
from tomwer.core.scan.scanbase import TomwerScanBase
|
18
|
+
from tomwer.core.scan.scanfactory import ScanFactory
|
19
|
+
from tomwer.core.scan.scantype import ScanType
|
20
|
+
from tomwer.gui.control.datadiscovery import DataDiscoveryWidget
|
21
|
+
|
22
|
+
logger = logging.getLogger(__name__)
|
23
|
+
|
24
|
+
|
25
|
+
class DataDiscoveryOW(widget.OWBaseWidget, WidgetLongProcessing, openclass=True):
|
26
|
+
"""
|
27
|
+
This widget will browse a folder and sub folder to find valid tomo scan project.
|
28
|
+
Contrary to the scan watcher it will parse all folder / sub folders then stop.
|
29
|
+
"""
|
30
|
+
|
31
|
+
name = "scan discovery"
|
32
|
+
id = "orangecontrib.widgets.tomwer.control.DataDiscoveryOW.DataDiscoveryOW"
|
33
|
+
description = (
|
34
|
+
"This widget will browse a folder and sub folder to find valid tomo scan project. \n"
|
35
|
+
"Contrary to the scan watcher it will parse all folder / sub folders then stop."
|
36
|
+
)
|
37
|
+
icon = "icons/datadiscover.svg"
|
38
|
+
priority = 11
|
39
|
+
keywords = [
|
40
|
+
"tomography",
|
41
|
+
"tomwer",
|
42
|
+
"datadiscovery",
|
43
|
+
"data",
|
44
|
+
"discovery",
|
45
|
+
"search",
|
46
|
+
"research",
|
47
|
+
"hdf5",
|
48
|
+
"NXtomo",
|
49
|
+
]
|
50
|
+
|
51
|
+
want_main_area = True
|
52
|
+
want_control_area = False
|
53
|
+
resizing_enabled = True
|
54
|
+
|
55
|
+
ewokstaskclass = tomwer.core.process.control.datadiscovery._DataDiscoveryPlaceHolder
|
56
|
+
|
57
|
+
class Outputs:
|
58
|
+
data = Output(name="data", type=TomwerScanBase, doc="one scan to be process")
|
59
|
+
|
60
|
+
settings = Setting(dict())
|
61
|
+
|
62
|
+
def __init__(self, *args, **kwargs):
|
63
|
+
super().__init__(*args, **kwargs)
|
64
|
+
self._widget = DataDiscoveryWidget(parent=self)
|
65
|
+
|
66
|
+
self._box = gui.vBox(self.mainArea, self.name)
|
67
|
+
layout = self._box.layout()
|
68
|
+
layout.addWidget(self._widget)
|
69
|
+
|
70
|
+
self._widget.setConfiguration(self.settings)
|
71
|
+
|
72
|
+
# getting ready for processing
|
73
|
+
self._processingThread = _DiscoverThread()
|
74
|
+
|
75
|
+
# connect signal / slot
|
76
|
+
self._processingThread.sigDataFound.connect(self._sendData)
|
77
|
+
self._processingThread.finished.connect(self._endProcessing)
|
78
|
+
self._widget.widget.controlWidget._qpbstartstop.released.connect(
|
79
|
+
self._switchObservation
|
80
|
+
)
|
81
|
+
# dedicated one for settings
|
82
|
+
self._widget.widget.controlWidget._filterQLE.editingFinished.connect(
|
83
|
+
self._updatesettings
|
84
|
+
)
|
85
|
+
self._widget.widget.controlWidget._qteFolderSelected.editingFinished.connect(
|
86
|
+
self._updatesettings
|
87
|
+
)
|
88
|
+
self._widget.widget.configWidget.sigScanTypeChanged.connect(
|
89
|
+
self._updatesettings
|
90
|
+
)
|
91
|
+
|
92
|
+
def _updatesettings(self):
|
93
|
+
self.settings = self.getConfiguration()
|
94
|
+
|
95
|
+
# expose some API
|
96
|
+
def getConfiguration(self) -> dict:
|
97
|
+
return self._widget.getConfiguration()
|
98
|
+
|
99
|
+
def setConfiguration(self, config: dict):
|
100
|
+
self._widget.setConfiguration(config)
|
101
|
+
|
102
|
+
def getProcessingThread(self) -> qt.QThread:
|
103
|
+
return self._processingThread
|
104
|
+
|
105
|
+
def setFolderObserved(self, dir_: str):
|
106
|
+
self._widget.widget.setFolderObserved(dir_)
|
107
|
+
|
108
|
+
def setSearchScanType(self, scan_type):
|
109
|
+
self._widget.widget.setSearchScanType(scan_type)
|
110
|
+
|
111
|
+
def setFilePattern(self, pattern: Optional[str]):
|
112
|
+
self._widget.widget.setLinuxFilePattern(pattern)
|
113
|
+
|
114
|
+
def _switchObservation(self, *args, **kwargs):
|
115
|
+
"""stop or start the disceovery according to the thread state"""
|
116
|
+
thread = self.getProcessingThread()
|
117
|
+
if thread.isRunning():
|
118
|
+
thread.quit()
|
119
|
+
self._endProcessing()
|
120
|
+
else:
|
121
|
+
self.start_discovery()
|
122
|
+
|
123
|
+
def start_discovery(self, wait: Optional[int] = None):
|
124
|
+
"""start the discovery of scans
|
125
|
+
:param int wait: optional waiting time in second
|
126
|
+
"""
|
127
|
+
thread = self.getProcessingThread()
|
128
|
+
if thread.isRunning():
|
129
|
+
logger.warning("Discovery is already running")
|
130
|
+
return
|
131
|
+
self._startProcessing()
|
132
|
+
thread.setConfiguration(self.getConfiguration())
|
133
|
+
thread.start()
|
134
|
+
if wait is not None:
|
135
|
+
thread.wait(wait)
|
136
|
+
|
137
|
+
def _sendData(self, data):
|
138
|
+
if data is not None:
|
139
|
+
self.Outputs.data.send(data)
|
140
|
+
|
141
|
+
def _startProcessing(self, *args, **kwargs):
|
142
|
+
self._widget.widget.controlWidget._qpbstartstop.setText("stop discovery")
|
143
|
+
return super()._startProcessing(*args, **kwargs)
|
144
|
+
|
145
|
+
def _endProcessing(self, *args, **kwargs):
|
146
|
+
self._widget.widget.controlWidget._qpbstartstop.setText("start discovery")
|
147
|
+
return super()._endProcessing(*args, **kwargs)
|
148
|
+
|
149
|
+
|
150
|
+
class _DiscoverThread(qt.QThread):
|
151
|
+
"""
|
152
|
+
Thread to browse folder and sub folder and looking for some scan
|
153
|
+
"""
|
154
|
+
|
155
|
+
sigDataFound = qt.Signal(object)
|
156
|
+
"""emit each time a new dataset is found"""
|
157
|
+
|
158
|
+
def __init__(self, **kwargs) -> None:
|
159
|
+
super().__init__(**kwargs)
|
160
|
+
self._root_dir = None
|
161
|
+
self._research_type = None
|
162
|
+
self._file_filter = None
|
163
|
+
self._look_for_hdf5 = False
|
164
|
+
|
165
|
+
def setConfiguration(self, config: dict):
|
166
|
+
self._root_dir = config.get("start_folder", None)
|
167
|
+
self._research_type = ScanType.from_value(config["scan_type_searched"])
|
168
|
+
self._file_filter = config.get("file_filter", None)
|
169
|
+
self._look_for_hdf5 = self._research_type in (
|
170
|
+
ScanType.BLISS,
|
171
|
+
ScanType.NX_TOMO,
|
172
|
+
)
|
173
|
+
|
174
|
+
def run(self):
|
175
|
+
if self._research_type is None:
|
176
|
+
logger.error("No reserach type defined. Cannot research scan")
|
177
|
+
elif not os.path.isdir(self._root_dir):
|
178
|
+
logger.error(f"{self._root_dir} is not a directory")
|
179
|
+
else:
|
180
|
+
self.discover_scan(file_path=self._root_dir)
|
181
|
+
|
182
|
+
def discover_scan(self, file_path):
|
183
|
+
if (
|
184
|
+
os.path.isfile(file_path)
|
185
|
+
and self._look_for_hdf5
|
186
|
+
and h5py.is_hdf5(file_path)
|
187
|
+
) or (os.path.isdir(file_path) and not self._look_for_hdf5):
|
188
|
+
try:
|
189
|
+
name_match = self._file_filter is None or fnmatch.fnmatch(
|
190
|
+
os.path.basename(file_path), self._file_filter
|
191
|
+
)
|
192
|
+
except Exception as e:
|
193
|
+
logger.error(f"fnmatch fail. Error is {e}")
|
194
|
+
name_match = True
|
195
|
+
if name_match:
|
196
|
+
self._treat_path(file_path)
|
197
|
+
if os.path.isdir(file_path):
|
198
|
+
[
|
199
|
+
self.discover_scan(file_path=os.path.join(file_path, file_))
|
200
|
+
for file_ in os.listdir(file_path)
|
201
|
+
]
|
202
|
+
|
203
|
+
def _treat_path(self, folder_path: str):
|
204
|
+
"""treat file / folder at a specific location"""
|
205
|
+
try:
|
206
|
+
scan_objs = ScanFactory.create_scan_objects(
|
207
|
+
scan_path=folder_path,
|
208
|
+
accept_bliss_scan=(self._research_type == ScanType.BLISS),
|
209
|
+
)
|
210
|
+
except Exception as e:
|
211
|
+
logger.info(f"Fail to treat {folder_path}. Error is {e}")
|
212
|
+
else:
|
213
|
+
for scan in scan_objs:
|
214
|
+
if (
|
215
|
+
isinstance(scan, BlissScan)
|
216
|
+
and self._research_type is ScanType.BLISS
|
217
|
+
):
|
218
|
+
self.sigDataFound.emit(scan)
|
219
|
+
elif (
|
220
|
+
isinstance(scan, NXtomoScan)
|
221
|
+
and self._research_type is ScanType.NX_TOMO
|
222
|
+
):
|
223
|
+
self.sigDataFound.emit(scan)
|
224
|
+
elif (
|
225
|
+
isinstance(scan, EDFTomoScan)
|
226
|
+
and self._research_type is ScanType.SPEC
|
227
|
+
):
|
228
|
+
self.sigDataFound.emit(scan)
|
229
|
+
else:
|
230
|
+
raise NotImplementedError("case not handled", self._research_type)
|