Search found 4 matches

by coolbeans201
2015-09-25T08:40:54-07:00
Forum: Users
Topic: Adding/Subtracting Two Images
Replies: 6
Views: 5500

Re: Adding/Subtracting Two Images

My question was more along the lines of the difference between add, Plus, subtract, and MinusSrc. Are they the same for the operations they perform? I want to keep my code as similar to the functionality that existed before, so want to choose the right one.
by coolbeans201
2015-09-25T06:37:37-07:00
Forum: Users
Topic: Adding/Subtracting Two Images
Replies: 6
Views: 5500

Re: Adding/Subtracting Two Images

Also, what's the difference between what you have and this? int status = execl("/usr/bin/composite", "composite", "temp_in1.pgm", "temp_in2.pgm", "-compose", "plus", "temp_out.pgm", (char*)NULL); int status = execl("/usr/bin/composite", "composite", "temp_in1.pgm", "temp_in2.pgm", "-compose ...
by coolbeans201
2015-09-25T06:31:38-07:00
Forum: Users
Topic: Adding/Subtracting Two Images
Replies: 6
Views: 5500

Re: Adding/Subtracting Two Images

Yeah, this was last worked on 10 years ago. And I figured it out too. Just a silly logical error. Thanks!
by coolbeans201
2015-09-25T05:23:34-07:00
Forum: Users
Topic: Adding/Subtracting Two Images
Replies: 6
Views: 5500

Adding/Subtracting Two Images

Hi all, I'm new to ImageMagick as I have just started working on an image analysis project. I've working with some existing, but old, code for working with these images. I'm trying to understand how to add and subtract images as a test run with the code. Before, it looked like this: if (chosen ...