Android application using image recognition technology

I want to develop an Android application that uses image recognition technology similar to googles Google. Since I'm new to pattern recognition technology, can anyone suggest which open source API Android can use to achieve this. I heard about OpenCV that can be used for this purpose, but this link says that openCV is not quite suitable for Android. This is true? Or can this open source be used for my specifications? Help me!

+4
source share
2 answers

OpenCV is great for Android. I am working on an Android facial recognition application with OpenCV and have just finished the tutorials described in this link:

http://opencv.itseez.com/doc/tutorials/introduction/android_binary_package/android_binary_package.html

OpenCV 2.3.1 contains some examples and allows you to use C / C ++ code using NDK for compilation. Also check out these links:

http://opencv.itseez.com/doc/tutorials/introduction/android_binary_package/android_binary_package_using_with_NDK.html#android-binary-package-with-ndk

Let me know if this helps you or when you need help setting up OpenCV with Android.

+4
source

Google goggle does not have an open API to date.

You can try iqengines. http://www.iqengines.com

It supports development on Android and IOS.

The disadvantage is not free. But it does offer a free trial.

Good luck.

0
source

Source: https://habr.com/ru/post/1403040/


All Articles