tomwer 1.4.0rc2__py3-none-any.whl → 1.4.0rc4__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.
- tomwer/core/process/reconstruction/nabu/nabuscores.py +2 -2
- tomwer/gui/reconstruction/axis/CalculationWidget.py +4 -0
- tomwer/version.py +1 -1
- {tomwer-1.4.0rc2.dist-info → tomwer-1.4.0rc4.dist-info}/METADATA +1 -1
- {tomwer-1.4.0rc2.dist-info → tomwer-1.4.0rc4.dist-info}/RECORD +9 -9
- {tomwer-1.4.0rc2.dist-info → tomwer-1.4.0rc4.dist-info}/LICENSE +0 -0
- {tomwer-1.4.0rc2.dist-info → tomwer-1.4.0rc4.dist-info}/WHEEL +0 -0
- {tomwer-1.4.0rc2.dist-info → tomwer-1.4.0rc4.dist-info}/entry_points.txt +0 -0
- {tomwer-1.4.0rc2.dist-info → tomwer-1.4.0rc4.dist-info}/top_level.txt +0 -0
@@ -287,7 +287,7 @@ class _Reconstructor(_NabuBaseReconstructor):
|
|
287
287
|
)
|
288
288
|
|
289
289
|
results = {}
|
290
|
-
if self.advancement:
|
290
|
+
if self.advancement is not None:
|
291
291
|
self.advancement.total = len(self.nabu_configs)
|
292
292
|
for var_value, config in self.nabu_configs.items():
|
293
293
|
if self._cancelled:
|
@@ -312,7 +312,7 @@ class _Reconstructor(_NabuBaseReconstructor):
|
|
312
312
|
process_name=self.process_name,
|
313
313
|
)
|
314
314
|
# specific treatment for cor: rename output files
|
315
|
-
if self.advancement:
|
315
|
+
if self.advancement is not None:
|
316
316
|
self.advancement.update()
|
317
317
|
return results
|
318
318
|
|
@@ -180,6 +180,10 @@ class CalculationWidget(qt.QWidget):
|
|
180
180
|
return axis_mode.AxisMode.from_value(self._qcbPosition.currentText())
|
181
181
|
|
182
182
|
def setMode(self, mode: axis_mode.AxisMode):
|
183
|
+
if mode == self.getMode():
|
184
|
+
# when set mode the estimated cor might changed.
|
185
|
+
# that we want to avoid.
|
186
|
+
return
|
183
187
|
with block_signals(self._qcbPosition):
|
184
188
|
index = self._qcbPosition.findText(mode.value)
|
185
189
|
if index >= 0:
|
tomwer/version.py
CHANGED
@@ -220,7 +220,7 @@ orangecontrib/tomwer/widgets/visualization/tests/__init__.py,sha256=47DEQpj8HBSa
|
|
220
220
|
tomwer/__init__.py,sha256=GeLSeY4__z-HQZu1y4ptZ5Y1OeXFvG8kuEwWXhkeaMA,360
|
221
221
|
tomwer/__main__.py,sha256=7tCADiS4u7k1PCxFhlRAcYSIOpxQTGUTx8sCEQ-hi1E,8707
|
222
222
|
tomwer/utils.py,sha256=7h7dEgKAEUmQ43jkULvC1B9Adl55nkCty-SEKUKCl4U,7008
|
223
|
-
tomwer/version.py,sha256=
|
223
|
+
tomwer/version.py,sha256=4kO-OAjakssC-gp7Fx2dFQG3rDaw9_yYZ4K2ayDTif0,4383
|
224
224
|
tomwer/app/__init__.py,sha256=RYMB2YhbQaoMXC8W-oOyfZ_Y1vmHD7L13YkKeAMuShM,85
|
225
225
|
tomwer/app/axis.py,sha256=BJNuwMOjw1vS2w-9sKxltIgWMEWAPetnK2sAOFmXoZg,5880
|
226
226
|
tomwer/app/canvas.py,sha256=sM368nniUwbQXLA-oNCg1iNwMMol_ZGTKbiw8WsC4yw,1539
|
@@ -334,7 +334,7 @@ tomwer/core/process/reconstruction/nabu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5J
|
|
334
334
|
tomwer/core/process/reconstruction/nabu/castvolume.py,sha256=4VEVnJxWfG8_Ku2uhUSQAgGfvP_08mXswmC3bHU7E4M,9317
|
335
335
|
tomwer/core/process/reconstruction/nabu/helical.py,sha256=gauUkoPiShvnvMQrCQXv28g0yLe-GceML5kYMSXmNIg,1997
|
336
336
|
tomwer/core/process/reconstruction/nabu/nabucommon.py,sha256=s1KxEzHQJ09JEWP3_EvKFe51k1boi_a8YRlbs3TppdE,23338
|
337
|
-
tomwer/core/process/reconstruction/nabu/nabuscores.py,sha256=
|
337
|
+
tomwer/core/process/reconstruction/nabu/nabuscores.py,sha256=e5tRG1QtmVAdXb8KHMTMtBXA3KQXqKKcqipY2HzMURg,25275
|
338
338
|
tomwer/core/process/reconstruction/nabu/nabuslices.py,sha256=WWvq4cx6-lklUILOEMPCjDG_r8oy-QsuCI7hGaseiAw,34919
|
339
339
|
tomwer/core/process/reconstruction/nabu/nabuvolume.py,sha256=O9d3PUvkk5r-YNEcOfzyPSx5DT1pu8wGXWXpQ0GhWnw,20556
|
340
340
|
tomwer/core/process/reconstruction/nabu/plane.py,sha256=366gWprWw8Rlob8jsMn753CqgudruvvVauU0ihH2lU4,400
|
@@ -544,7 +544,7 @@ tomwer/gui/reconstruction/axis/AxisMainWindow.py,sha256=7w2LhdQ1pa8vU9U-XTA3ohGQ
|
|
544
544
|
tomwer/gui/reconstruction/axis/AxisOptionsWidget.py,sha256=M47xflZ68KkTDg8tksFt8n7ZFVIr8tJxstlPyG4Odq0,12168
|
545
545
|
tomwer/gui/reconstruction/axis/AxisSettingsWidget.py,sha256=7GpHteE2j9RUo-jUQoJdXJ-GnIi9VnY13Lveq3mvd1M,28120
|
546
546
|
tomwer/gui/reconstruction/axis/AxisWidget.py,sha256=nkORZHLo8D3Sk8j-8QVr9l3Qse66s-Nv-tB6kCkSMTY,19794
|
547
|
-
tomwer/gui/reconstruction/axis/CalculationWidget.py,sha256=
|
547
|
+
tomwer/gui/reconstruction/axis/CalculationWidget.py,sha256=OgEeOCml6p-vJwEpKZLIoHLXfIrU9X7nLWewPswN1jE,8628
|
548
548
|
tomwer/gui/reconstruction/axis/CompareImages.py,sha256=jqzlMBU_tfIdR1yHuZa8Avt8Te0EPBkjI6R4TY6kIlw,11425
|
549
549
|
tomwer/gui/reconstruction/axis/ControlWidget.py,sha256=DsBPFIEZCva-JPUFxORjkAnoYfgb5udfJ71W-fCwgRY,10686
|
550
550
|
tomwer/gui/reconstruction/axis/EstimatedCORWidget.py,sha256=dL9SCjPEZ7MQLGZP0gZARb-rxD8YYSl-gcFyuN14jwg,17081
|
@@ -904,9 +904,9 @@ tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_volume_viewer
|
|
904
904
|
tomwer/tests/test_ewoks/test_conversion.py,sha256=a8cEWbErXiFCAkaapi0jeEoRKYxcFQCoa-Jr_u77_OM,3656
|
905
905
|
tomwer/tests/test_ewoks/test_single_node_execution.py,sha256=YBUHfiAnkciv_kjj7biC5fOs7c7ofNImM_azGMn4LZM,2813
|
906
906
|
tomwer/tests/test_ewoks/test_workflows.py,sha256=L0vNnfGpI6Soy8b_w6OjTMhLzUSutMFhWjPOe6kZO-E,5081
|
907
|
-
tomwer-1.4.
|
908
|
-
tomwer-1.4.
|
909
|
-
tomwer-1.4.
|
910
|
-
tomwer-1.4.
|
911
|
-
tomwer-1.4.
|
912
|
-
tomwer-1.4.
|
907
|
+
tomwer-1.4.0rc4.dist-info/LICENSE,sha256=62p1wL0n9WMTu8x2YDv0odYgTqeSvTd9mQ0v6Mq7lzE,1876
|
908
|
+
tomwer-1.4.0rc4.dist-info/METADATA,sha256=jWn57dyyFZQJtbNIfrfwbQvwlZCU0wpyDQID-cq7MyE,13406
|
909
|
+
tomwer-1.4.0rc4.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
910
|
+
tomwer-1.4.0rc4.dist-info/entry_points.txt,sha256=py3ZUWvGnWGc5c7Yhw_uBTm8Fmew0BDw3aQZnWMBNZI,500
|
911
|
+
tomwer-1.4.0rc4.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
|
912
|
+
tomwer-1.4.0rc4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|