opencv/android
2010-11-28 20:27:57 +00:00
..
android-cmake correct spelling of my email address.. 2010-10-23 18:17:30 +00:00
android-jni optimizing calibration for android 2010-11-28 20:27:57 +00:00
apps fixing a small error in the armeabi selection 2010-11-27 09:07:57 +00:00
android-opencv.mk.in patch from ticket #699 added 2010-11-22 22:48:52 +00:00
Android.mk.in Adding optimization for brief and android using NEON SIMD intrinsics 2010-11-28 05:41:50 +00:00
Android.mk.master.in removing the duplicated zlib for android - seems to build and link fine with the old one ... 2010-09-22 02:20:42 +00:00
Android.mk.modules.in adding cmake based android scripts and a reusable android library - samples to follow - haven't tested yet completely 2010-09-22 01:47:11 +00:00
android.wiki adding a copy of the wiki entry for android build 2010-10-25 21:53:55 +00:00
AndroidCVModule.cmake changing the names of the opencv libraries for android, all except 3rd parties have opencv_ prepended 2010-11-09 17:59:27 +00:00
AndroidManifest.xml.in adding cmake based android scripts and a reusable android library - samples to follow - haven't tested yet completely 2010-09-22 01:47:11 +00:00
Application.mk.in changing the names of the opencv libraries for android, all except 3rd parties have opencv_ prepended 2010-11-09 17:59:27 +00:00
changes.Android.txt adding cmake based android scripts and a reusable android library - samples to follow - haven't tested yet completely 2010-09-22 01:47:11 +00:00
changes.diff adding cmake based android scripts and a reusable android library - samples to follow - haven't tested yet completely 2010-09-22 01:47:11 +00:00
CMakeLists.txt adding an include director to android cmake <opencv2/opencv.hpp> should work now 2010-10-26 01:38:31 +00:00
cvconfig.h.in adding cmake based android scripts and a reusable android library - samples to follow - haven't tested yet completely 2010-09-22 01:47:11 +00:00
default.properties.in adding cmake based android scripts and a reusable android library - samples to follow - haven't tested yet completely 2010-09-22 01:47:11 +00:00
diff.txt adding cmake based android scripts and a reusable android library - samples to follow - haven't tested yet completely 2010-09-22 01:47:11 +00:00
README.android.txt adding setup for some sample applications that use OpenCV on the android platform - nothing concrete yet - but soon. 2010-09-23 13:48:12 +00:00

Author: Ethan Rublee
email: ethan.rublee@gmail.com

  
To build with cmake:

mkdir build
cd build
cmake ..
make



Make sure to set the path in the cache for the crystax ndk available 
here:
   http://www.crystax.net/android/ndk-r4.php
   
   
to include in an android project -
just include the generated android-opencv.mk in you android ndk project 
(in an Android.mk file)
with:

include android-opencv.mk

this defines OPENCV_INCLUDES and OPENCV_LIBS - which you should add to your
makefiles like:

#define OPENCV_INCLUDES and OPENCV_LIBS
include $(PATH_TO_OPENCV_ANDROID_BUILD)/android-opencv.mk

LOCAL_LDLIBS += $(OPENCV_LIBS)
    
LOCAL_C_INCLUDES +=  $(OPENCV_INCLUDES)

for now, you also need to cd to android-jni and run make
this will create the android shared library with some useful functionality
that may be reused in android projects.