09-27-2005 03:36 PM
09-27-2005 11:03 PM
The quick and easy method will work for up to three colors. You could use each gray image as the input for a color plane (RGB) when combining color planes into a color image.
Slightly more difficult would be scaling each gray image by the three RGB components of the color you want it to be, then adding them together. For example, if you want cyan, it is scaled 0 R, 1 G, 1 B. If you want orange, it is 1 R, 0.5 G, 0 B. Add all the R images together, all the G images together, and all the B images together, then use them as the color plane inputs as above.
09-28-2005 10:46 AM