cript to stack using only Lights and Biases

Is there a script to stack using only Lights and Biases?

You may take an existing script and modify it to suit your needs. It’s not so difficult.

For example:

########### PREPROCESSING SCRIPT ###########
#
# Script for mono camera preprocessing with bias only
#
# Needs 2 sets of RAW images in the working
# directory, within 2 directories:
#   biases/
#   lights/
# Saves masters to ./masters/
#
############################################

requires 1.2.0

# Convert Bias Frames to .fit files
cd biases
convert bias -out=../process
cd ../process

# Stack Bias Frames to bias_stacked.fit
stack bias rej 3 3 -nonorm -out=../masters/bias_stacked
cd ..

# Convert Light Frames to .fit files
cd lights
convert light -out=../process
cd ../process

# Calibrate Light Frames
calibrate light -bias=../masters/bias_stacked

# Align Lights
register pp_light

# Stack calibrated lights to result.fit
stack r_pp_light rej 3 3 -norm=addscale -output_norm -out=result

# and flipping if required
load result
mirrorx -bottomup
save ../result_$FILTER:%s$_$LIVETIME:%d$s

close
1 Like

First entry in the FAQ page: Siril - FAQ

1 Like