How to open the camera using Android NDK

I need to open the camera from the NDK to improve performance, and I have a few days on the Internet. But nothing will work.

Does anyone know how to open a camera using NDK?

+5
source share
1 answer

NDK and performance :

The source code is primarily useful when you have an existing native code base that you want to port to Android, and not to “speed up” parts of a Java application.

Avoid jumping into NDK because you think this will improve performance. Stick to Java and use the profiler to work out bottlenecks there.

0

All Articles