tomwer 1.3.0rc11__py3-none-any.whl → 1.3.0rc13__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +6 -1
- orangecontrib/tomwer/widgets/control/NXTomomillOW.py +6 -1
- orangecontrib/tomwer/widgets/control/NXtomoConcatenate.py +6 -1
- orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +6 -1
- orangecontrib/tomwer/widgets/reconstruction/NabuHelicalPrepareWeightsDoubleOW.py +6 -1
- tomwer/core/process/reconstruction/nabu/utils.py +1 -0
- tomwer/core/scan/nxtomoscan.py +2 -0
- tomwer/gui/stitching/stitching_preview.py +1 -5
- tomwer/version.py +1 -1
- {tomwer-1.3.0rc11.dist-info → tomwer-1.3.0rc13.dist-info}/METADATA +8 -1
- {tomwer-1.3.0rc11.dist-info → tomwer-1.3.0rc13.dist-info}/RECORD +17 -17
- /tomwer-1.3.0rc11-py3.11-nspkg.pth → /tomwer-1.3.0rc13-py3.11-nspkg.pth +0 -0
- {tomwer-1.3.0rc11.dist-info → tomwer-1.3.0rc13.dist-info}/LICENSE +0 -0
- {tomwer-1.3.0rc11.dist-info → tomwer-1.3.0rc13.dist-info}/WHEEL +0 -0
- {tomwer-1.3.0rc11.dist-info → tomwer-1.3.0rc13.dist-info}/entry_points.txt +0 -0
- {tomwer-1.3.0rc11.dist-info → tomwer-1.3.0rc13.dist-info}/namespace_packages.txt +0 -0
- {tomwer-1.3.0rc11.dist-info → tomwer-1.3.0rc13.dist-info}/top_level.txt +0 -0
@@ -115,7 +115,12 @@ class EDF2NXOW(
|
|
115
115
|
edf_to_nx_configuration=EDFConfig().to_dict(),
|
116
116
|
)
|
117
117
|
|
118
|
-
self.task_output_changed_callbacks
|
118
|
+
if isinstance(self.task_output_changed_callbacks, set):
|
119
|
+
self.task_output_changed_callbacks.add(self._notify_state)
|
120
|
+
elif isinstance(self.task_output_changed_callbacks, list):
|
121
|
+
self.task_output_changed_callbacks.append(self._notify_state)
|
122
|
+
else:
|
123
|
+
raise NotImplementedError
|
119
124
|
|
120
125
|
# handle settings
|
121
126
|
self._loadSettings()
|
@@ -123,7 +123,12 @@ class NXTomomillOW(
|
|
123
123
|
self.update_default_inputs(
|
124
124
|
h5_to_nx_configuration=HDF5Config().to_dict(),
|
125
125
|
)
|
126
|
-
self.task_output_changed_callbacks
|
126
|
+
if isinstance(self.task_output_changed_callbacks, set):
|
127
|
+
self.task_output_changed_callbacks.add(self._notify_state)
|
128
|
+
elif isinstance(self.task_output_changed_callbacks, list):
|
129
|
+
self.task_output_changed_callbacks.append(self._notify_state)
|
130
|
+
else:
|
131
|
+
raise NotImplementedError
|
127
132
|
|
128
133
|
# handle settings
|
129
134
|
self._loadSettings()
|
@@ -95,7 +95,12 @@ class NXtomoConcatenateOW(
|
|
95
95
|
## connect signal / slot
|
96
96
|
self.widget.sigConfigChanged.connect(self._updateSettings)
|
97
97
|
|
98
|
-
self.task_output_changed_callbacks
|
98
|
+
if isinstance(self.task_output_changed_callbacks, set):
|
99
|
+
self.task_output_changed_callbacks.add(self._notify_state)
|
100
|
+
elif isinstance(self.task_output_changed_callbacks, list):
|
101
|
+
self.task_output_changed_callbacks.append(self._notify_state)
|
102
|
+
else:
|
103
|
+
raise NotImplementedError
|
99
104
|
|
100
105
|
## handle settings
|
101
106
|
self._loadSettings()
|
@@ -81,7 +81,12 @@ class ImageKeyUpgraderOW(
|
|
81
81
|
_layout.addWidget(self.widget)
|
82
82
|
|
83
83
|
# connect signal / slot
|
84
|
-
self.task_output_changed_callbacks
|
84
|
+
if isinstance(self.task_output_changed_callbacks, set):
|
85
|
+
self.task_output_changed_callbacks.add(self._notify_state)
|
86
|
+
elif isinstance(self.task_output_changed_callbacks, list):
|
87
|
+
self.task_output_changed_callbacks.append(self._notify_state)
|
88
|
+
else:
|
89
|
+
raise NotImplementedError
|
85
90
|
self.widget.sigOperationsChanged.connect(self._update_operations_to_ewoks)
|
86
91
|
|
87
92
|
self._updateGUIFromDefaultValues()
|
@@ -102,7 +102,12 @@ class NabuHelicalPrepareWeightsDoubleOW(
|
|
102
102
|
## connect signal / slot
|
103
103
|
self.widget.sigConfigChanged.connect(self._updateSettings)
|
104
104
|
|
105
|
-
self.task_output_changed_callbacks
|
105
|
+
if isinstance(self.task_output_changed_callbacks, set):
|
106
|
+
self.task_output_changed_callbacks.add(self._notify_state)
|
107
|
+
elif isinstance(self.task_output_changed_callbacks, list):
|
108
|
+
self.task_output_changed_callbacks.append(self._notify_state)
|
109
|
+
else:
|
110
|
+
raise NotImplementedError
|
106
111
|
|
107
112
|
## handle settings
|
108
113
|
self._loadSettings()
|
tomwer/core/scan/nxtomoscan.py
CHANGED
@@ -114,6 +114,8 @@ class NXtomoScan(_tsNXtomoScan, TomwerScanBase):
|
|
114
114
|
def __init__(self, scan, entry, index=None, overwrite_proc_file=False):
|
115
115
|
TomwerScanBase.__init__(self)
|
116
116
|
_tsNXtomoScan.__init__(self, scan=scan, entry=entry, index=index)
|
117
|
+
# speed up for now, avoid to run check by default
|
118
|
+
self.set_check_behavior(run_check=False)
|
117
119
|
# register at least the 'default' working directory as a possible reconstruction path
|
118
120
|
self.add_reconstruction_path(self.path)
|
119
121
|
self._helical = HelicalMetadata()
|
@@ -68,10 +68,6 @@ class PreviewStitchingPlot(Plot2D, StitchAndBackgroundAlphaMixIn):
|
|
68
68
|
self._stitched_image = None
|
69
69
|
self._composition_background = None
|
70
70
|
|
71
|
-
# replace the simple Plot2D by a `_PreviewPlot2D` (to filter overlay image value to be displayed)
|
72
|
-
self._plot = _PreviewPlot2D(parent=self)
|
73
|
-
self.layout().addWidget(self._plot)
|
74
|
-
|
75
71
|
# tune plot
|
76
72
|
self.setYAxisInverted(settings.Y_AXIS_DOWNWARD)
|
77
73
|
# by default we want to have a full screen display
|
@@ -87,7 +83,7 @@ class PreviewStitchingPlot(Plot2D, StitchAndBackgroundAlphaMixIn):
|
|
87
83
|
self.getColorBarWidget().hide()
|
88
84
|
|
89
85
|
# tape mesure action
|
90
|
-
self._tapeMeasureButton = TapeMeasureToolButton(parent=self, plot=self
|
86
|
+
self._tapeMeasureButton = TapeMeasureToolButton(parent=self, plot=self)
|
91
87
|
self._tapeMeasureButton.setCheckable(True)
|
92
88
|
self.toolBar().addWidget(self._tapeMeasureButton)
|
93
89
|
|
tomwer/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tomwer
|
3
|
-
Version: 1.3.
|
3
|
+
Version: 1.3.0rc13
|
4
4
|
Summary: "tomography workflow tools"
|
5
5
|
Home-page: https://gitlab.esrf.fr/tomotools/tomwer
|
6
6
|
Author: data analysis unit
|
@@ -43,6 +43,7 @@ Provides-Extra: _full_base
|
|
43
43
|
Requires-Dist: orange-canvas-core ; extra == '_full_base'
|
44
44
|
Requires-Dist: orange-widget-base ; extra == '_full_base'
|
45
45
|
Requires-Dist: ewoks[orange] >=0.1.1 ; extra == '_full_base'
|
46
|
+
Requires-Dist: ewoksorange ==0.6 ; extra == '_full_base'
|
46
47
|
Requires-Dist: rsyncmanager ; extra == '_full_base'
|
47
48
|
Requires-Dist: graypy ; extra == '_full_base'
|
48
49
|
Requires-Dist: fabio ; extra == '_full_base'
|
@@ -61,6 +62,7 @@ Provides-Extra: dev
|
|
61
62
|
Requires-Dist: orange-canvas-core ; extra == 'dev'
|
62
63
|
Requires-Dist: orange-widget-base ; extra == 'dev'
|
63
64
|
Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'dev'
|
65
|
+
Requires-Dist: ewoksorange ==0.6 ; extra == 'dev'
|
64
66
|
Requires-Dist: rsyncmanager ; extra == 'dev'
|
65
67
|
Requires-Dist: graypy ; extra == 'dev'
|
66
68
|
Requires-Dist: fabio ; extra == 'dev'
|
@@ -86,6 +88,7 @@ Provides-Extra: dev_no_cuda
|
|
86
88
|
Requires-Dist: orange-canvas-core ; extra == 'dev_no_cuda'
|
87
89
|
Requires-Dist: orange-widget-base ; extra == 'dev_no_cuda'
|
88
90
|
Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'dev_no_cuda'
|
91
|
+
Requires-Dist: ewoksorange ==0.6 ; extra == 'dev_no_cuda'
|
89
92
|
Requires-Dist: rsyncmanager ; extra == 'dev_no_cuda'
|
90
93
|
Requires-Dist: graypy ; extra == 'dev_no_cuda'
|
91
94
|
Requires-Dist: fabio ; extra == 'dev_no_cuda'
|
@@ -109,6 +112,7 @@ Provides-Extra: doc
|
|
109
112
|
Requires-Dist: orange-canvas-core ; extra == 'doc'
|
110
113
|
Requires-Dist: orange-widget-base ; extra == 'doc'
|
111
114
|
Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'doc'
|
115
|
+
Requires-Dist: ewoksorange ==0.6 ; extra == 'doc'
|
112
116
|
Requires-Dist: rsyncmanager ; extra == 'doc'
|
113
117
|
Requires-Dist: graypy ; extra == 'doc'
|
114
118
|
Requires-Dist: fabio ; extra == 'doc'
|
@@ -135,6 +139,7 @@ Provides-Extra: full
|
|
135
139
|
Requires-Dist: orange-canvas-core ; extra == 'full'
|
136
140
|
Requires-Dist: orange-widget-base ; extra == 'full'
|
137
141
|
Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'full'
|
142
|
+
Requires-Dist: ewoksorange ==0.6 ; extra == 'full'
|
138
143
|
Requires-Dist: rsyncmanager ; extra == 'full'
|
139
144
|
Requires-Dist: graypy ; extra == 'full'
|
140
145
|
Requires-Dist: fabio ; extra == 'full'
|
@@ -156,6 +161,7 @@ Provides-Extra: full_no_cuda
|
|
156
161
|
Requires-Dist: orange-canvas-core ; extra == 'full_no_cuda'
|
157
162
|
Requires-Dist: orange-widget-base ; extra == 'full_no_cuda'
|
158
163
|
Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'full_no_cuda'
|
164
|
+
Requires-Dist: ewoksorange ==0.6 ; extra == 'full_no_cuda'
|
159
165
|
Requires-Dist: rsyncmanager ; extra == 'full_no_cuda'
|
160
166
|
Requires-Dist: graypy ; extra == 'full_no_cuda'
|
161
167
|
Requires-Dist: fabio ; extra == 'full_no_cuda'
|
@@ -175,6 +181,7 @@ Provides-Extra: full_no_nabu
|
|
175
181
|
Requires-Dist: orange-canvas-core ; extra == 'full_no_nabu'
|
176
182
|
Requires-Dist: orange-widget-base ; extra == 'full_no_nabu'
|
177
183
|
Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'full_no_nabu'
|
184
|
+
Requires-Dist: ewoksorange ==0.6 ; extra == 'full_no_nabu'
|
178
185
|
Requires-Dist: rsyncmanager ; extra == 'full_no_nabu'
|
179
186
|
Requires-Dist: graypy ; extra == 'full_no_nabu'
|
180
187
|
Requires-Dist: fabio ; extra == 'full_no_nabu'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
tomwer-1.3.
|
1
|
+
tomwer-1.3.0rc13-py3.11-nspkg.pth,sha256=xeeGR3TjdoVxdFeF6T-zSwZWh6Et--EYuPWu67LxL_c,574
|
2
2
|
orangecontrib/tomwer/__init__.py,sha256=B4DXy1gY_wXmNYa2aOfapmJb2mEuCAjoaNEGnpBs70g,148
|
3
3
|
orangecontrib/tomwer/state_summary.py,sha256=5_dPzweL3r0ye4ZfJo6IV2ThJI8fQhWoO2ySdJJajj8,1711
|
4
4
|
orangecontrib/tomwer/orange/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -35,12 +35,12 @@ orangecontrib/tomwer/widgets/control/DataSelectorOW.py,sha256=v9csh78KhQiYdjF8xH
|
|
35
35
|
orangecontrib/tomwer/widgets/control/DataTransfertOW.py,sha256=2JgRnGJ02Q1ZznzQjSFgkOVFVoOD7GKK9U2CeKn0gaI,7262
|
36
36
|
orangecontrib/tomwer/widgets/control/DataValidatorOW.py,sha256=MnZjERQwwPn_qrRi5cbQrkHn2ynj7Epxpx6zmtoATmg,7113
|
37
37
|
orangecontrib/tomwer/widgets/control/DataWatcherOW.py,sha256=j1Dsk5UK6PKgXE_MHel5YrXlc4gdh2Ui3BUTYB6STtU,7403
|
38
|
-
orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py,sha256=
|
38
|
+
orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py,sha256=IB_6wX2CpWJ3PMQr6iQF3NyQSfTk6CI3No26ilLiVWk,9669
|
39
39
|
orangecontrib/tomwer/widgets/control/EmailOW.py,sha256=u23-BjMs7YX9wC2K_7XowbVNh8rDjQ5X6UaojKLOTOw,2493
|
40
40
|
orangecontrib/tomwer/widgets/control/FilterOW.py,sha256=52t0D0NeLscvFyTT4yA7gPSn4CkkpppQpSf4STDiwjs,4659
|
41
41
|
orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py,sha256=BeA7odDdxQD9euQ1jciIgJt79e2k0AL9UQzIDzDPnSk,3271
|
42
|
-
orangecontrib/tomwer/widgets/control/NXTomomillOW.py,sha256=
|
43
|
-
orangecontrib/tomwer/widgets/control/NXtomoConcatenate.py,sha256=
|
42
|
+
orangecontrib/tomwer/widgets/control/NXTomomillOW.py,sha256=TWw1AHyFAemtzoPEx7x2DgayFbmlCAihz8DHp-jCTD0,13776
|
43
|
+
orangecontrib/tomwer/widgets/control/NXtomoConcatenate.py,sha256=A1RwGWRYP9sz2CGN173iXXNsm9ffoa7Z_nPKUze7SYk,6416
|
44
44
|
orangecontrib/tomwer/widgets/control/NotifierOW.py,sha256=2RSE30W2oYOERgFHbpW7EYMghSDRfn-mxgq6Q02Ngfo,4237
|
45
45
|
orangecontrib/tomwer/widgets/control/ReduceDarkFlatSelectorOW.py,sha256=llc0e2Y8nMtXDQ56WXZoIdvjRwqcwU64yPVRnuyIOxY,2836
|
46
46
|
orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py,sha256=4NAyQ1MNzxAFGiClJIzZ8yb3ffLd4WBAgVsQ6ezud5s,6790
|
@@ -98,7 +98,7 @@ orangecontrib/tomwer/widgets/debugtools/icons/inspector.png,sha256=sNTPrEEDGQHwU
|
|
98
98
|
orangecontrib/tomwer/widgets/debugtools/icons/inspector.svg,sha256=GPx4Xoo8dZGr0Ea6O_2YXcTh5Vg6Lzrh86uf6iG5opQ,3943
|
99
99
|
orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py,sha256=fRN66mig0NgVz_brLiiZE0bpn_n2YqfWVXj2f0B5ytE,6399
|
100
100
|
orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py,sha256=hwSZssH3LuN9Z1BoaSPcROSyCmLJRw_ne8K_Piy3pAU,4467
|
101
|
-
orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py,sha256=
|
101
|
+
orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py,sha256=Uhn4GXxZ2RZADZrJk7poyp6-_pvUpJTUMyQYWZmlP8g,4820
|
102
102
|
orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py,sha256=gPAKiONW9ytFcOwFqxpQUfvjA1KdSWSrKhy7gwBMAzs,3817
|
103
103
|
orangecontrib/tomwer/widgets/edit/__init__.py,sha256=Vi59fYTOMhrLXwQ3OkMIonmHx4rG_UUnutZPiax_rGY,1555
|
104
104
|
orangecontrib/tomwer/widgets/edit/icons/image_key_editor.png,sha256=Fl6PEgzY9Gjs6Sh_vMWHCXVtNJ_wiQ5e9g58rZI64ng,878
|
@@ -152,7 +152,7 @@ orangecontrib/tomwer/widgets/other/icons/hub.svg,sha256=9EYoBKY-P-cO17nM48OPA9VD
|
|
152
152
|
orangecontrib/tomwer/widgets/reconstruction/AxisOW.py,sha256=ffbMYzHWALir19bZhpXjYIgMfJjyyaeov9Uxp5tNyGs,22342
|
153
153
|
orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py,sha256=Ev-TrwZ-HxmdMfZMsz512vhCOgXpGImVsdNdlPSnQIM,9604
|
154
154
|
orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py,sha256=DyjkZ3RDgUvEkK3yR8qCWQq9eaVus8I-64nvhrHN1ZQ,10988
|
155
|
-
orangecontrib/tomwer/widgets/reconstruction/NabuHelicalPrepareWeightsDoubleOW.py,sha256=
|
155
|
+
orangecontrib/tomwer/widgets/reconstruction/NabuHelicalPrepareWeightsDoubleOW.py,sha256=aI8VcCK7m518xjjjvE8l3kpTQFEwjWF-hCKua4bBkJM,5967
|
156
156
|
orangecontrib/tomwer/widgets/reconstruction/NabuOW.py,sha256=LzHxCuLrEQIVeGaYmcEO7rwxaT98mbXPdpMc6dCaAHE,12673
|
157
157
|
orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py,sha256=B4iZdYHmbsim4qQD5UaMCg2lcJa3ZAim3_AZQC7bYIk,19195
|
158
158
|
orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py,sha256=MS9l5_li0uglg-7UtY06sAaMTg01mBvI07LuYU2fbXg,18724
|
@@ -220,7 +220,7 @@ orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.svg,sha256=2uT9_px
|
|
220
220
|
tomwer/__init__.py,sha256=82Jp1abyG4UWdGuT4nNU7LxaUV6xxkOte5pIz3w69Do,1745
|
221
221
|
tomwer/__main__.py,sha256=jsDfWA2yl5am0dHQVkYwlKLxxqKNont6VDF-LusuawE,8575
|
222
222
|
tomwer/utils.py,sha256=EgVwJ5CQVjoBvcKNwyVoXv_P4ciI11oxb8fNyy82Lck,8465
|
223
|
-
tomwer/version.py,sha256=
|
223
|
+
tomwer/version.py,sha256=lXPi3Lipmz_M4_7gc06F9w5mgrOgmO2qMawbl8wWz_w,4384
|
224
224
|
tomwer/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
225
225
|
tomwer/app/axis.py,sha256=UQNxYpHzxnGdNpkV6sJoO_0tPGCxJkylghwbA7ENsM0,5948
|
226
226
|
tomwer/app/canvas.py,sha256=RbQqgE7DuNjv4nGG6BNfnSevQO5_lCl7N71hGcLoxwE,1561
|
@@ -331,7 +331,7 @@ tomwer/core/process/reconstruction/nabu/nabuvolume.py,sha256=gYXQRxVhdbizz7iwh2j
|
|
331
331
|
tomwer/core/process/reconstruction/nabu/plane.py,sha256=Cgzth77M0pFgLDULmvmPj4bqFm5MvIMJ7Ien8mRqLsE,134
|
332
332
|
tomwer/core/process/reconstruction/nabu/settings.py,sha256=JpHKf0smiXeWC8i9Mj7h3g67teJ3Gqycd-Uwg2yzGOQ,2279
|
333
333
|
tomwer/core/process/reconstruction/nabu/target.py,sha256=_Z4gViprjR3Vm4KASqsASStLA9GM1wTyoi3Pg0PUSeg,1481
|
334
|
-
tomwer/core/process/reconstruction/nabu/utils.py,sha256=
|
334
|
+
tomwer/core/process/reconstruction/nabu/utils.py,sha256=gRs1fEw4qmNyf7R4j9XMo6IK7Y5q3NlkDeh6w2UAelI,17950
|
335
335
|
tomwer/core/process/reconstruction/normalization/__init__.py,sha256=TDtATpMVFkEOT93wLXLpW0A_TOeiQDiM7AWAqX4FIB0,119
|
336
336
|
tomwer/core/process/reconstruction/normalization/normalization.py,sha256=G-eAZIct47RvzvHNMbKsG4Dt58vTSKhvH-NnIMzxzOs,13210
|
337
337
|
tomwer/core/process/reconstruction/normalization/params.py,sha256=porWC6G5lQWF-4JB03B56uGmuMxjx3u0ZMums-Bh2p8,4790
|
@@ -385,7 +385,7 @@ tomwer/core/scan/edfscan.py,sha256=_J6NyqXkMcrD6NirLT-TmI-Le2UpdV8uy8XOmrdu9AM,2
|
|
385
385
|
tomwer/core/scan/futurescan.py,sha256=chXjteQ4_6cSyFBoCil-DeHkHGGzM-xb21xJRYLEfhI,213
|
386
386
|
tomwer/core/scan/hdf5scan.py,sha256=P7LHxyqY9Ujg19MpYVItarKxFEy2Z_PVTh5Hi3PCXyU,980
|
387
387
|
tomwer/core/scan/helicalmetadata.py,sha256=JRBxqHkyTe5f3FDlbIeDfN31P6Ms48SqGiFRXHuZ8sw,472
|
388
|
-
tomwer/core/scan/nxtomoscan.py,sha256=
|
388
|
+
tomwer/core/scan/nxtomoscan.py,sha256=FbWSMjWZP0tO0WyFXP-DBxiKzR2dJV7th8w5wFdi1Kw,19440
|
389
389
|
tomwer/core/scan/scanbase.py,sha256=noq-wwEnffhJ3C1VLCMDsy3NLNIQwKdr3FWak-n3gG8,32197
|
390
390
|
tomwer/core/scan/scanfactory.py,sha256=Ltisxo9B8j11lS_cdwUjuEH1ZjPb9nmU2KmkXxzU98I,10521
|
391
391
|
tomwer/core/scan/scantype.py,sha256=pQjWuCy_014uK5cdb8pFAkE_EPHJvPdSo3NM8aWTo58,137
|
@@ -554,7 +554,7 @@ tomwer/gui/stitching/metadataholder.py,sha256=jeR6_DM529aEmxQLeLM3CB-49GHq6KLY2N
|
|
554
554
|
tomwer/gui/stitching/normalization.py,sha256=EuHyoMcjcOnqO7_gepvcjiQx3DBkSZhsNApOiG-o3yM,4454
|
555
555
|
tomwer/gui/stitching/stitchandbackground.py,sha256=0qavlnjKLCf5VcQn6KPHdQxTUG6s2dpW-pSbuJulEa8,5982
|
556
556
|
tomwer/gui/stitching/stitching.py,sha256=XKL9dcC538Z_Pb2OisEdAIC7CYGfgRLXToU048tuF6s,57013
|
557
|
-
tomwer/gui/stitching/stitching_preview.py,sha256=
|
557
|
+
tomwer/gui/stitching/stitching_preview.py,sha256=DYkGXw7Tolef6GkmzfDLCbv-f9v92pHUi4K7T-aTokQ,9669
|
558
558
|
tomwer/gui/stitching/stitching_raw.py,sha256=eRCWpBa6scTe1FeSyvMK-3pepx-G-cg1EWEXQzotvhk,22353
|
559
559
|
tomwer/gui/stitching/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
560
560
|
tomwer/gui/stitching/config/axisparams.py,sha256=DYPvo3JiamezPhGaUVy11pEq1CyxDqdAgFFzhMqUXcI,7578
|
@@ -776,10 +776,10 @@ tomwer/tests/test_utils.py,sha256=D0rNDSK6csEOYBY_7gD-4A3jp8rYAm8L1_Xg34A9I2s,30
|
|
776
776
|
tomwer/tests/utils.py,sha256=RAXx5A99WD4Vyuv_wjHBdr-Xu7UiThHRKw2eiB5GX10,107
|
777
777
|
tomwer/third_part/WaitingOverlay.py,sha256=GnqiytcJDp_24Cmz_2nZAP5HfpL3Yh7AzR2ATIusGsg,3906
|
778
778
|
tomwer/third_part/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
779
|
-
tomwer-1.3.
|
780
|
-
tomwer-1.3.
|
781
|
-
tomwer-1.3.
|
782
|
-
tomwer-1.3.
|
783
|
-
tomwer-1.3.
|
784
|
-
tomwer-1.3.
|
785
|
-
tomwer-1.3.
|
779
|
+
tomwer-1.3.0rc13.dist-info/LICENSE,sha256=yR_hIZ1MfDh9x2_s23uFqBH7m5DgrBl9nJKkE37YChM,1877
|
780
|
+
tomwer-1.3.0rc13.dist-info/METADATA,sha256=0EfS39UPUvyxUDgtMYcozttFWPcgbLtljIUjq0DFCLc,11814
|
781
|
+
tomwer-1.3.0rc13.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
782
|
+
tomwer-1.3.0rc13.dist-info/entry_points.txt,sha256=fIcDnCxjgwzfIylLYhUsFyiNZjZMxsfRQBxi4f-cJg8,440
|
783
|
+
tomwer-1.3.0rc13.dist-info/namespace_packages.txt,sha256=Iut-JTfT11SZHHm77_ZeszD7pZDWXcTweCbvrJpqDyQ,14
|
784
|
+
tomwer-1.3.0rc13.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
|
785
|
+
tomwer-1.3.0rc13.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|