Ziem
Ziem

Reputation: 6695

Is it possible to user OpenCV library with Android 2.1?

Is it possible to use OpenCV library with Android 2.1?

Upvotes: 1

Views: 508

Answers (2)

Anoop K. Prabhu
Anoop K. Prabhu

Reputation: 5655

Yes, it is possible.

Have a look on ndk-build-crystax. I am using it to crosscompile my C or C++ codes that use OpenCV functions to run on android.

Upvotes: 2

INS
INS

Reputation: 10820

Yes, you just need to compile it using the NDK since it is a C/C++ library. To call functions from opencv you will need to create wrappers and call them from Java using JNI.

Upvotes: 2

Related Questions