opencv/android/android-jni
2010-09-26 18:12:42 +00:00
..
jni giving the android jni a start up function OnLoad 2010-09-26 18:12:42 +00:00
src/com/opencv 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
AndroidManifest.xml 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 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
Makefile adding some functionality to the android-opencv shared library 2010-09-22 12:13:26 +00:00
README.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
sample.local.env.mk fixing a bug in the local.env.mk setup, and correcting the readme's 2010-09-22 13:24:37 +00:00

android-jni

this is an example of an android library project that has some reusable
code that exposes part of OpenCV to android. In particular this provides a
native camera interface for loading live video frames from the android camera
into native opencv functions(as cv::Mat's)

pre-reqs:
* build the opencv/android libraries - up one directory
* you need swig in you path for android-jni
    on ubuntu - sudo apt-get install swig
    others: http://www.swig.org/
   
to build:

make

that should work...  If it doesn't make sure to edit the generated local.env.mk
to reflect your machine's setup

see the sample for how to use this in your own projects