Ask Your Question

fatmatto's profile - activity

2014-07-05 06:05:46 -0600 commented question Load images from assets folder on android, Java?

Did you find a solution?? i am trying to do the same thing with no results ...

2014-06-27 05:24:57 -0600 received badge  Supporter (source)
2014-06-27 02:57:28 -0600 commented answer Missing createFisherFaceRecognizer method on android.

I managed to compile the example, apparently just tweaking .mk files: In android.mk i added the line:

"include /home/<Path_to>/OpenCV-2.4.9-android-sdk/sdk/native/jni/OpenCV.mk"

And i also created the Application.mk file :

APP_STL := gnustl_static
APP_CPPFLAGS := -frtti -fexceptions
APP_ABI := x86 armeabi armeabi-v7a
APP_PLATFORM := android-8

(If you don't want to compile for x86 , remove it from APP_ABI)

I hope it helps you