How to combine multiple pairs of images into single images?
Posted: 2017-07-11T05:59:52-07:00
I have a set of images that I flipped horizontally using rawtherapee image processing program
Now I want to combine the original and the flipped image into a single image.
The number of original images and hence the number of flipped are 814 each.
How can I combine them together using bash? I was referred from the rawtherapee forum to use bash - I already have it installed but my experience with bash is nearly 0 at this point
I was able to get this code running
montage *.jpg -tile 0x -quality 100 -geometry +0+0 image.jpg
But getting it to work on the whole sequence is the issue
Now I want to combine the original and the flipped image into a single image.
The number of original images and hence the number of flipped are 814 each.
How can I combine them together using bash? I was referred from the rawtherapee forum to use bash - I already have it installed but my experience with bash is nearly 0 at this point
I was able to get this code running
montage *.jpg -tile 0x -quality 100 -geometry +0+0 image.jpg
But getting it to work on the whole sequence is the issue