I want to use the OpenGL ES for the Android camera preview and Save the captured Image.

I like to use the OpenGL ES in Android camera to give some effect to the Android camera. So please anyone tell me how to do it?

link|improve this question

73% accept rate
feedback

1 Answer

you need to implement the android.hardware.Camera.PreviewCallback interface and override the method

public synchronized void onPreviewFrame(byte[] data, Camera camera) {
                        myOpenGLObject.receiveFrames(data);
        }

to read the frames received from the camera callback. I suggest you to have a look into the andar source http://code.google.com/p/andar/. Especially the class CameraPreviewHandler.java.

I hope this answers your question.

link|improve this answer
1  
Thanks for reply. Atlease i got one reply. But please see the updated question. – iDroid Explorer Nov 9 '11 at 4:57
1  
If i got proper result what i want, i will surly going to accept your answer. – iDroid Explorer Nov 9 '11 at 4:58
feedback

Your Answer

 
or
required, but never shown

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