Jpg vs tiff for intermediate processing

Jpg vs tiff for intermediate processing I have taken about 30 images and I want to average them to get a final noise reduced image (not astrophotography) I'm using this algorithm: ```bash !/bin/bash i=0 for file in imgjpg; do echo -n "$file.. " if ; then cp $file avg.jpg else convert $file avg.jpg -fx "(u+$iv)/$" avg.jpg fi i=$ done ``` (src: https://superuser....

Visit Direct Link

You Might Also Like

Post comment