setiastrosuitepro 1.7.1.post2__py3-none-any.whl → 1.7.4__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.
Potentially problematic release.
This version of setiastrosuitepro might be problematic. Click here for more details.
- setiastro/images/3dplanet.png +0 -0
- setiastro/saspro/__init__.py +20 -8
- setiastro/saspro/__main__.py +349 -290
- setiastro/saspro/_generated/build_info.py +2 -2
- setiastro/saspro/abe.py +4 -4
- setiastro/saspro/autostretch.py +29 -18
- setiastro/saspro/doc_manager.py +4 -1
- setiastro/saspro/gui/main_window.py +46 -7
- setiastro/saspro/gui/mixins/file_mixin.py +6 -2
- setiastro/saspro/gui/mixins/menu_mixin.py +1 -0
- setiastro/saspro/gui/mixins/toolbar_mixin.py +9 -2
- setiastro/saspro/imageops/serloader.py +101 -17
- setiastro/saspro/layers.py +186 -10
- setiastro/saspro/layers_dock.py +198 -5
- setiastro/saspro/legacy/image_manager.py +10 -4
- setiastro/saspro/legacy/numba_utils.py +301 -119
- setiastro/saspro/numba_utils.py +998 -270
- setiastro/saspro/ops/settings.py +6 -6
- setiastro/saspro/pixelmath.py +1 -1
- setiastro/saspro/planetprojection.py +4059 -0
- setiastro/saspro/resources.py +2 -0
- setiastro/saspro/save_options.py +45 -13
- setiastro/saspro/ser_stack_config.py +21 -1
- setiastro/saspro/ser_stacker.py +8 -2
- setiastro/saspro/ser_stacker_dialog.py +37 -10
- setiastro/saspro/ser_tracking.py +57 -35
- setiastro/saspro/serviewer.py +164 -16
- setiastro/saspro/sfcc.py +14 -8
- setiastro/saspro/stacking_suite.py +292 -111
- setiastro/saspro/subwindow.py +64 -36
- setiastro/saspro/translations/all_source_strings.json +2 -2
- setiastro/saspro/translations/ar_translations.py +3 -3
- setiastro/saspro/translations/de_translations.py +2 -2
- setiastro/saspro/translations/es_translations.py +2 -2
- setiastro/saspro/translations/fr_translations.py +2 -2
- setiastro/saspro/translations/hi_translations.py +2 -2
- setiastro/saspro/translations/it_translations.py +2 -2
- setiastro/saspro/translations/ja_translations.py +2 -2
- setiastro/saspro/translations/pt_translations.py +2 -2
- setiastro/saspro/translations/ru_translations.py +2 -2
- setiastro/saspro/translations/saspro_ar.ts +2 -2
- setiastro/saspro/translations/saspro_de.ts +4 -4
- setiastro/saspro/translations/saspro_es.ts +2 -2
- setiastro/saspro/translations/saspro_fr.ts +2 -2
- setiastro/saspro/translations/saspro_hi.ts +2 -2
- setiastro/saspro/translations/saspro_it.ts +4 -4
- setiastro/saspro/translations/saspro_ja.ts +2 -2
- setiastro/saspro/translations/saspro_pt.ts +2 -2
- setiastro/saspro/translations/saspro_ru.ts +2 -2
- setiastro/saspro/translations/saspro_sw.ts +2 -2
- setiastro/saspro/translations/saspro_uk.ts +2 -2
- setiastro/saspro/translations/saspro_zh.ts +2 -2
- setiastro/saspro/translations/sw_translations.py +2 -2
- setiastro/saspro/translations/uk_translations.py +2 -2
- setiastro/saspro/translations/zh_translations.py +2 -2
- setiastro/saspro/window_shelf.py +62 -1
- {setiastrosuitepro-1.7.1.post2.dist-info → setiastrosuitepro-1.7.4.dist-info}/METADATA +1 -1
- {setiastrosuitepro-1.7.1.post2.dist-info → setiastrosuitepro-1.7.4.dist-info}/RECORD +62 -60
- {setiastrosuitepro-1.7.1.post2.dist-info → setiastrosuitepro-1.7.4.dist-info}/entry_points.txt +1 -1
- {setiastrosuitepro-1.7.1.post2.dist-info → setiastrosuitepro-1.7.4.dist-info}/WHEEL +0 -0
- {setiastrosuitepro-1.7.1.post2.dist-info → setiastrosuitepro-1.7.4.dist-info}/licenses/LICENSE +0 -0
- {setiastrosuitepro-1.7.1.post2.dist-info → setiastrosuitepro-1.7.4.dist-info}/licenses/license.txt +0 -0
setiastro/saspro/ops/settings.py
CHANGED
|
@@ -96,8 +96,8 @@ class SettingsDialog(QDialog):
|
|
|
96
96
|
self.sp_min_alt = QDoubleSpinBox(); self.sp_min_alt.setRange(0.0, 90.0); self.sp_min_alt.setDecimals(1)
|
|
97
97
|
self.sp_obj_limit = QSpinBox(); self.sp_obj_limit.setRange(1, 1000)
|
|
98
98
|
|
|
99
|
-
self.
|
|
100
|
-
self.
|
|
99
|
+
self.chk_autostretch_24bit = QCheckBox(self.tr("High-quality autostretch (24-bit; better gradients)"))
|
|
100
|
+
self.chk_autostretch_24bit.setToolTip(self.tr("Compute autostretch on a 24-bit histogram (smoother gradients)."))
|
|
101
101
|
|
|
102
102
|
self.slider_bg_opacity = QSlider(Qt.Orientation.Horizontal)
|
|
103
103
|
self.slider_bg_opacity.setRange(0, 100)
|
|
@@ -178,7 +178,7 @@ class SettingsDialog(QDialog):
|
|
|
178
178
|
|
|
179
179
|
# ---- Display (moved under Theme) ----
|
|
180
180
|
left_col.addRow(QLabel(self.tr("<b>Display</b>")))
|
|
181
|
-
left_col.addRow(self.
|
|
181
|
+
left_col.addRow(self.chk_autostretch_24bit)
|
|
182
182
|
left_col.addRow(self.tr("Background Opacity:"), w_bg_opacity)
|
|
183
183
|
left_col.addRow(self.tr("Background Image:"), w_bg_image)
|
|
184
184
|
|
|
@@ -296,8 +296,8 @@ class SettingsDialog(QDialog):
|
|
|
296
296
|
self.sp_obj_limit.setValue(self.settings.value("object_limit", 100, type=int))
|
|
297
297
|
|
|
298
298
|
# Display
|
|
299
|
-
self.
|
|
300
|
-
self.settings.value("display/
|
|
299
|
+
self.chk_autostretch_24bit.setChecked(
|
|
300
|
+
self.settings.value("display/autostretch_24bit", True, type=bool)
|
|
301
301
|
)
|
|
302
302
|
|
|
303
303
|
current_opacity = self.settings.value("display/bg_opacity", 50, type=int)
|
|
@@ -464,7 +464,7 @@ class SettingsDialog(QDialog):
|
|
|
464
464
|
# Updates + Display
|
|
465
465
|
self.settings.setValue("updates/check_on_startup", self.chk_updates_startup.isChecked())
|
|
466
466
|
self.settings.setValue("updates/url", self.le_updates_url.text().strip())
|
|
467
|
-
self.settings.setValue("display/
|
|
467
|
+
self.settings.setValue("display/autostretch_24bit", self.chk_autostretch_24bit.isChecked())
|
|
468
468
|
|
|
469
469
|
# Custom background: persist the chosen path (empty -> remove)
|
|
470
470
|
bg_path = (self.le_bg_path.text() or "").strip()
|
setiastro/saspro/pixelmath.py
CHANGED
|
@@ -1179,7 +1179,7 @@ class PixelMathDialogPro(QDialog):
|
|
|
1179
1179
|
target_median=float(getattr(self, "_as_target", 0.25)),
|
|
1180
1180
|
linked=bool(getattr(self, "_as_linked", True)),
|
|
1181
1181
|
sigma=float(getattr(self, "_as_sigma", 3.0)),
|
|
1182
|
-
|
|
1182
|
+
use_24bit=bool(getattr(self, "_as_24bit", True)),
|
|
1183
1183
|
)
|
|
1184
1184
|
|
|
1185
1185
|
self._set_preview_image(out)
|