image stack
Posted: 2013-03-29T10:46:57-07:00
Many operators take two images. For example:
Is there a general rule for what happens if there are more images in the stack? Some operators (eg -composite) can use a third image as a mask. Other operators (eg -append) operate on the first two to create one, then repeat until the entire image stack is used.
What I want to do is use one second image to operate on a list of first images. So
would produce 3 files (out-#.jpg). -clut appears to operate on the first two and simply delete additional ones. Can -clut be used the way I want, or better, is there more general syntax for this?
I'm currently using ImageMagick 6.8.0-6 2012-11-20 Q16
Code: Select all
convert gray_image.jpg lut.png -clut out.jpg
What I want to do is use one second image to operate on a list of first images. So
Code: Select all
convert gray_image_0.jpg gray_image_1.jpg gray_image_2.jpg lut.png -clut out.jpg
I'm currently using ImageMagick 6.8.0-6 2012-11-20 Q16