Höher, schneller, weiter …

9.3.2025 Linz. Vor ein paar Tagen waren die Bedingungen doch ganz gut und ich experimentiere weiter. Mehr als Experimente sind es leider immer noch nicht. Ich versuche das guiding und es schlägt fehl. Mehr dazu an einem anderen Tag.)

Höher, schneller, weiter soll es gehen. Also mehr Bilder, längere Belichtungszeiten und bessere Nachbearbeitung.

Das Aufstellen und einnorden funktioniert mittlerweile sehr gut. 30 Sekunden Bilder sind dann auch ohne guiding kein Problem. So mache ich 110 Bilder zu je 30 Sekunden und versuche die Nachbearbeitung zu verbessern.

Bei aller Liebe, aber FWHM von durchschnittlich (!) 9,5 ist einfach unterirdisch schlecht! Sind es die Bedingungen in Linz oder mein schlechtes Equipment? Ich muss mal ins Gebirge um das zu prüfen.

Hier das Ergebnis:

M42, Orionnebel. 80×30 Sekunden (40 Minuten) + darks + biases

Ich verbessere meinen Siril-Skript und benutze erstmals die „Dekonvolution“. Etwas tricky aber es funktioniert. Die Sternchen sind dann etwas besser.)

Hier das Skript:

###############################################
#
# Lights-Darks-Biases 1.1 / Siril 1.2.4
# Mar 2025
# created by Peter Böhm
# this script is public domain, see end of file
#
################### SCRIPT ####################
#
# Script for color camera preprocessing
#
# Needs 3 sets of RAW images in the working
# directory, within 4 directories:
#   darks/
#   lights/
#   biases/
#   process/
#
##############################################

requires 1.2.4

# Convert Dark Frames to sequence
cd darks
convert darks -ser -out=../process -debayer

# Convert Bias Frames to sequence
cd ../biases
convert biases -ser -out=../process -debayer

# Convert Light Frames to sequence
cd ../lights
convert lights -ser -out=../process -debayer

# master bias
cd ../process
stack biases rej w 3 3 -nonorm -out=./master_bias

# master darks
stack darks rej w 3 3 -nonorm -out=./master_dark

# biases & darks
calibrate lights -bias=master_bias -dark=master_dark -prefix=bias_dark_ -cc=dark 4 4
# background
#seqsubsky bias_dark_lights -rbf -samples=15 -tolerance=2 -smooth=0.5 -prefix=bg_
seqsubsky bias_dark_lights 1 -samples=15 -tolerance=2 -prefix=bg_
# register 
register bg_bias_dark_lights -2pass
seqapplyreg bg_bias_dark_lights -prefix=registered_
stack registered_bg_bias_dark_lights rej 3 3 -norm=addscale -weight_from_wfwhm -filter-wfwhm=80% -out=lights_stacked_biases_darks.fit

cd ..
close

load process/lights_stacked_biases_darks.fit
#autostretch

##
# This is free and unencumbered software released into the public domain.
#
# Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, 
# either in source code form or as a compiled binary, for any purpose, commercial or
# non-commercial, and by any means.
#
# In jurisdictions that recognize copyright laws, the author or authors of this software
# dedicate any and all copyright interest in the software to the public domain.
# We make this dedication for the benefit of the public at large and to the detriment
# of our heirs and successors. We intend this dedication to be an overt act of
# relinquishment in perpetuity of all present and future rights to this software under
# copyright law.
#
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
# INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
# PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM,
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
##

Das könnte sie auch interessieren ...