1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
############################################
#
# Script for Siril 1.2
# February 2023
# (C) Vincent Hourdin
# RGB_compositing v1.0
#
########### SIMPLE RGB COMPOSTION ###########
# In an empty directory, put images named R, G and B (or any naming that
# respects this order alphanumerically)
# They will get aligned, cropped and combined into a color image
requires 1.2.0
# Convert 3 input images to a sequence
convert colors -out=process
cd process
# Make a 2pass registration
register colors -2pass
# Crop the 3 images to their common area
seqapplyreg colors -framing=min
# Compose the 3 layers
rgbcomp r_colors_00003 r_colors_00002 r_colors_00001 -out=../rgb
|