vote up 4 vote down star

I'm writing a Java game engine (http://victoryengine.org) and I've been experimenting with generating "3d" images with depth that you can see with those red/blue glasses. I'm using Java2D for graphics.

I've created something that works, but is very slow (by manually copying pixel values and stuff like that).

What I need to is take two BufferedImages (one for the left eye, one for the right) and combine them into one (either another buffer or directly to screen). For one I just want the red channel, and for the other one the green and blue ones. What's the fastest way to do this?

flag

1 Answer

vote up 2 vote down check

Look ath the JAI BandMerge operation:

http://download.java.net/media/jai/javadoc/1.1.3/jai-apidocs/javax/media/jai/operator/BandMergeDescriptor.html

Create your stereoscopic pairs as greyscale images and use band merge to combine them as red and green channels in the final image.

link|flag
Then where is the blue? – Bart van Heukelom Jun 25 at 10:55
You can add the same image twice to get green and blue if that is your requirement – AndyT Jun 26 at 10:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.