Skip to content Skip to sidebar Skip to footer

How To Apply Different Live Effects To Android Camera?

I want to develop a Camera 2 kind of application. So i just wanted to know how to apply live effects to android Camera .Is there any android library for that? plz help me to solve

Solution 1:

What have you tried? I assume by live effects you mean shown on the preview.

You can try what the answer here suggested, but any sort of complicated filter implemented in java is going to slow things down. For good performance you'll probably have to write some native code to process the previews. The good news is, if you're writing NDK code you can make use of libraries like OpenCV to do the filtering for you.


Post a Comment for "How To Apply Different Live Effects To Android Camera?"