Search found 3 matches

by ilsland
2016-09-10T06:00:31-07:00
Forum: Users
Topic: Merging images into one (pixel by pixel / interleaving)
Replies: 6
Views: 3248

Re: Merging images into one (pixel by pixel / interleaving)

I tried both methods, and they both work very well. I wasn't aware of the possibility to use parenthesis in the IM syntax. I can also confirm the timings - 7.1s vs 2.6s on my machine - whereas my trivial line-by-line method took more than 15 minutes to complete. Problem solved: your help was highly ...
by ilsland
2016-09-08T18:01:58-07:00
Forum: Users
Topic: Merging images into one (pixel by pixel / interleaving)
Replies: 6
Views: 3248

Re: Merging images into one (pixel by pixel / interleaving)

Thank you very much for your valuable inputs. Yes, I forgot to specify that A,B,C,D have exactly the same size. You both helped me to figure out a solution: it works, now I'll have to refine it. Basically I did it in three steps, using crop, append, and "for" loops: 1) Merge A and C vertically ...
by ilsland
2016-09-08T10:21:17-07:00
Forum: Users
Topic: Merging images into one (pixel by pixel / interleaving)
Replies: 6
Views: 3248

Merging images into one (pixel by pixel / interleaving)

Hello I'm interested to know if there's a feature (or a set of combined features) that allows to merge four images into one, pixel by pixel, as shown in this simplified scheme: Input images (A,B,C,D): A(1,1) A(2,1) A(1,2) A(2,2) B(1,1) B(2,1) B(1,2) B(2,2) C(1,1) C(2,1) C(1,2) C(2,2) D(1,1) D(2,1) D ...