Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android - alternative for OpenCV?

I need to make a image recognition app. I was going through OpenCV tutorial and it says i need to install OpenCV manager from Google play which i think is not good from a user point of view. But after digging for many hours i noticed that OpenCV is the most popular and reliable among all. Is there any good alternative to OpenCV which does not require an another app to be installed. And what is this static initialisation of OpenCV. And if i do not want to install OpenCV manager then how good should I know NDK.

like image 507
Varundroid Avatar asked Sep 20 '12 12:09

Varundroid


People also ask

Does OpenCV work on mobile?

To work with the OpenCV Android library, you have to add it to your app module as a dependency. To easily do this on Android Studio, click on File -> Project Structure. When the project structure dialog opens, click on the app module or any other module that you want to use OpenCV library in.

What is open VC?

OpenCV (Open Source Computer Vision Library) is an open source computer vision and machine learning software library. OpenCV was built to provide a common infrastructure for computer vision applications and to accelerate the use of machine perception in the commercial products.


1 Answers

You can ship OpenCV in your own package if you want, you don't really need for the manager. If you ship OpenCV in your package you can use it at native level (C/C++), but you can also use the wrappers for using it directly at Java level.

like image 180
Sdra Avatar answered Sep 29 '22 13:09

Sdra