setiastrosuitepro 1.6.12__py3-none-any.whl → 1.7.3__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/images/TextureClarity.svg +56 -0
- setiastro/images/narrowbandnormalization.png +0 -0
- setiastro/images/planetarystacker.png +0 -0
- setiastro/saspro/__init__.py +9 -8
- setiastro/saspro/__main__.py +326 -285
- setiastro/saspro/_generated/build_info.py +2 -2
- setiastro/saspro/aberration_ai.py +128 -13
- setiastro/saspro/aberration_ai_preset.py +29 -3
- setiastro/saspro/astrospike_python.py +45 -3
- setiastro/saspro/blink_comparator_pro.py +116 -71
- setiastro/saspro/curve_editor_pro.py +72 -22
- setiastro/saspro/curves_preset.py +249 -47
- setiastro/saspro/doc_manager.py +4 -1
- setiastro/saspro/gui/main_window.py +326 -46
- setiastro/saspro/gui/mixins/file_mixin.py +41 -18
- setiastro/saspro/gui/mixins/menu_mixin.py +9 -0
- setiastro/saspro/gui/mixins/toolbar_mixin.py +123 -7
- setiastro/saspro/histogram.py +179 -7
- setiastro/saspro/imageops/narrowband_normalization.py +816 -0
- setiastro/saspro/imageops/serloader.py +1429 -0
- 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 +1 -1
- setiastro/saspro/live_stacking.py +24 -4
- setiastro/saspro/multiscale_decomp.py +30 -17
- setiastro/saspro/narrowband_normalization.py +1618 -0
- setiastro/saspro/planetprojection.py +3854 -0
- setiastro/saspro/remove_green.py +1 -1
- setiastro/saspro/resources.py +8 -0
- setiastro/saspro/rgbalign.py +456 -12
- setiastro/saspro/save_options.py +45 -13
- setiastro/saspro/ser_stack_config.py +102 -0
- setiastro/saspro/ser_stacker.py +2327 -0
- setiastro/saspro/ser_stacker_dialog.py +1865 -0
- setiastro/saspro/ser_tracking.py +228 -0
- setiastro/saspro/serviewer.py +1773 -0
- setiastro/saspro/sfcc.py +298 -64
- setiastro/saspro/shortcuts.py +14 -7
- setiastro/saspro/stacking_suite.py +21 -6
- setiastro/saspro/stat_stretch.py +179 -31
- setiastro/saspro/subwindow.py +38 -5
- setiastro/saspro/texture_clarity.py +593 -0
- setiastro/saspro/widgets/resource_monitor.py +122 -74
- {setiastrosuitepro-1.6.12.dist-info → setiastrosuitepro-1.7.3.dist-info}/METADATA +3 -2
- {setiastrosuitepro-1.6.12.dist-info → setiastrosuitepro-1.7.3.dist-info}/RECORD +51 -37
- {setiastrosuitepro-1.6.12.dist-info → setiastrosuitepro-1.7.3.dist-info}/WHEEL +0 -0
- {setiastrosuitepro-1.6.12.dist-info → setiastrosuitepro-1.7.3.dist-info}/entry_points.txt +0 -0
- {setiastrosuitepro-1.6.12.dist-info → setiastrosuitepro-1.7.3.dist-info}/licenses/LICENSE +0 -0
- {setiastrosuitepro-1.6.12.dist-info → setiastrosuitepro-1.7.3.dist-info}/licenses/license.txt +0 -0
|
Binary file
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
<svg width="500" height="500" viewBox="0 0 500 500" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
|
|
4
|
+
<stop offset="0%" style="stop-color:#0d0221;stop-opacity:1" />
|
|
5
|
+
<stop offset="100%" style="stop-color:#2a0e66;stop-opacity:1" />
|
|
6
|
+
</linearGradient>
|
|
7
|
+
<linearGradient id="sunGradient" x1="0%" y1="0%" x2="0%" y2="100%">
|
|
8
|
+
<stop offset="0%" style="stop-color:#ff9a00;stop-opacity:1" />
|
|
9
|
+
<stop offset="40%" style="stop-color:#ff0055;stop-opacity:1" />
|
|
10
|
+
<stop offset="100%" style="stop-color:#9900ff;stop-opacity:1" />
|
|
11
|
+
</linearGradient>
|
|
12
|
+
<linearGradient id="textGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
13
|
+
<stop offset="0%" style="stop-color:#00ffff;stop-opacity:1" />
|
|
14
|
+
<stop offset="100%" style="stop-color:#ff00ff;stop-opacity:1" />
|
|
15
|
+
</linearGradient>
|
|
16
|
+
<filter id="neonGlow" x="-50%" y="-50%" width="200%" height="200%">
|
|
17
|
+
<feGaussianBlur stdDeviation="3.0" result="coloredBlur"/>
|
|
18
|
+
<feMerge>
|
|
19
|
+
<feMergeNode in="coloredBlur"/>
|
|
20
|
+
<feMergeNode in="SourceGraphic"/>
|
|
21
|
+
</feMerge>
|
|
22
|
+
</filter>
|
|
23
|
+
</defs>
|
|
24
|
+
<rect width="500" height="500" fill="url(#skyGradient)" />
|
|
25
|
+
<g transform="translate(250, 220)">
|
|
26
|
+
<circle r="120" fill="url(#sunGradient)" />
|
|
27
|
+
<rect x="-120" y="20" width="240" height="4" fill="#2a0e66" opacity="0.8" />
|
|
28
|
+
<rect x="-120" y="35" width="240" height="6" fill="#2a0e66" opacity="0.8" />
|
|
29
|
+
<rect x="-120" y="52" width="240" height="8" fill="#2a0e66" opacity="0.8" />
|
|
30
|
+
<rect x="-120" y="72" width="240" height="12" fill="#2a0e66" opacity="0.8" />
|
|
31
|
+
<rect x="-120" y="96" width="240" height="16" fill="#2a0e66" opacity="0.8" />
|
|
32
|
+
</g>
|
|
33
|
+
<g stroke="#ff00ff" stroke-width="2" opacity="0.4">
|
|
34
|
+
<line x1="0" y1="350" x2="500" y2="350" />
|
|
35
|
+
<line x1="0" y1="380" x2="500" y2="380" />
|
|
36
|
+
<line x1="0" y1="420" x2="500" y2="420" />
|
|
37
|
+
<line x1="0" y1="470" x2="500" y2="470" />
|
|
38
|
+
<line x1="250" y1="350" x2="250" y2="500" />
|
|
39
|
+
<line x1="250" y1="350" x2="50" y2="500" />
|
|
40
|
+
<line x1="250" y1="350" x2="-150" y2="500" />
|
|
41
|
+
<line x1="250" y1="350" x2="450" y2="500" />
|
|
42
|
+
<line x1="250" y1="350" x2="650" y2="500" />
|
|
43
|
+
</g>
|
|
44
|
+
<g font-family="'Times New Roman', Times, serif" font-weight="bold" font-style="italic" font-size="360" text-anchor="middle">
|
|
45
|
+
<text x="217" y="390" fill="#00ffff" opacity="0.7">TC</text>
|
|
46
|
+
<text x="233" y="390" fill="#ff0055" opacity="0.7">TC</text>
|
|
47
|
+
<text x="225" y="390" fill="url(#textGradient)" stroke="#ffffff" stroke-width="3" filter="url(#neonGlow)">TC</text>
|
|
48
|
+
</g>
|
|
49
|
+
<g fill="#ffffff" opacity="0.8">
|
|
50
|
+
<circle cx="50" cy="50" r="2" />
|
|
51
|
+
<circle cx="450" cy="80" r="2" />
|
|
52
|
+
<circle cx="100" cy="150" r="1.5" />
|
|
53
|
+
<circle cx="400" cy="20" r="1.5" />
|
|
54
|
+
<path d="M420 120 L422 130 L432 132 L422 134 L420 144 L418 134 L408 132 L418 130 Z" fill="#00ffff" />
|
|
55
|
+
</g>
|
|
56
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
setiastro/saspro/__init__.py
CHANGED
|
@@ -3,18 +3,19 @@ Seti Astro Suite Pro - Main Package
|
|
|
3
3
|
|
|
4
4
|
This package provides advanced astrophotography tools for image calibration,
|
|
5
5
|
stacking, registration, photometry, and visualization.
|
|
6
|
+
|
|
7
|
+
Important:
|
|
8
|
+
- __init__.py must remain import-safe (no UI side effects, no splash, no QApplication).
|
|
9
|
+
- Do NOT import setiastro.saspro.__main__ from here.
|
|
6
10
|
"""
|
|
7
11
|
|
|
8
|
-
|
|
12
|
+
__all__ = []
|
|
13
|
+
|
|
14
|
+
# Re-export commonly used items for convenience (safe imports only)
|
|
9
15
|
try:
|
|
10
16
|
from .doc_manager import DocManager, ImageDocument
|
|
11
17
|
from .subwindow import ImageSubWindow
|
|
12
18
|
__all__ = ["DocManager", "ImageDocument", "ImageSubWindow"]
|
|
13
|
-
except
|
|
14
|
-
# During initial setup, some modules may not be available
|
|
19
|
+
except Exception:
|
|
20
|
+
# During initial setup or partial installs, some modules may not be available
|
|
15
21
|
__all__ = []
|
|
16
|
-
|
|
17
|
-
# Expose main entry point for package script
|
|
18
|
-
from .__main__ import main
|
|
19
|
-
__all__.append("main")
|
|
20
|
-
|