If you are using a shell script or python script you would probably loop
through the source images and use a counter starting at 0, as the created
tiffs are starting as 0000.
And add the images to an array
=======
#!/bin/bash

img_array=()
counter=0
for x in "${@}"
do
    img_array+=( "${x}" )
    counter+=1
done

align_image_stack -a ais_ "${@}"

for ((i=0;i<=${counter};i++));
do
    exiftool -overwrite_original -tagsfromfile  ${img_array[$i]} -all:all
ais_000$i}.tif
done

=======

(Completely untested !)

Op ma 20 apr. 2020 om 19:20 schreef John Aldridge <[email protected]
>:

> OK... I can cope with that. It'll be a bit messy working out (from the
> script) which source image corresponds to which processed one, but I'm sure
> I can sort out a way of doing it.
>
> Thanks!
>
> --
> A list of frequently asked questions is available at:
> http://wiki.panotools.org/Hugin_FAQ
> ---
> You received this message because you are subscribed to the Google Groups
> "hugin and other free panoramic software" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/hugin-ptx/8dca8865-40fb-423d-abe3-a08ba77f2fed%40googlegroups.com
> <https://groups.google.com/d/msgid/hugin-ptx/8dca8865-40fb-423d-abe3-a08ba77f2fed%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/CAGARPpv_65EDvDKqBzpx8oyeG912FGsR81nQX33BjomubJ9HeA%40mail.gmail.com.

Reply via email to