STLを使用できるよう、設定を変更する。
行うことは簡単で、jniディレクトリにApplication.xmlを作成したら、以下の行を追加する。
APP_STL := stlport_static
以上でOK。
APP_STL := stlport_static
include $(call all-subdir-makefiles)
JNIEXPORT void JNICALL
Java_jp_sprix_jni_ImageRecognize_queryImage(JNIEnv *env, jobject obj){
…
public class ImageRecognize { | |
private int mMajarVersion = 1; | |
protected int mMinorVersion = 9; | |
private static int mRevision = 980; | |
public void printVersion() { | |
System.err.println("Version: " + mMajarVersion + "." + mMinorVersion + "_" + mRevision); | |
} | |
public native void setMMajarVersion(int val); | |
public native void setMRevision(int val); | |
} |
/* | |
* Class: jp_sprix_jni_ImageRecognize | |
* Method: setMMajarVersion | |
* Signature: (I)V | |
*/ | |
JNIEXPORT void JNICALL Java_jp_sprix_jni_ImageRecognize_setMMajarVersion | |
(JNIEnv *, jobject, jint); | |
/* | |
* Class: jp_sprix_jni_ImageRecognize | |
* Method: setMRevision | |
* Signature: (I)V | |
*/ | |
JNIEXPORT void JNICALL Java_jp_sprix_jni_ImageRecognize_setMRevision | |
(JNIEnv *, jobject, jint); |
JNIEXPORT void JNICALL | |
Java_jp_sprix_jni_ImageRecognize_setMMajarVersion(JNIEnv *env, jobject thisObj, jint val){ | |
jclass clazz = env->GetObjectClass(thisObj); | |
jfieldID fid = env->GetFieldID(clazz, "mMajarVersion", "I"); | |
env->SetIntField(thisObj, fid, val); | |
} | |
JNIEXPORT void JNICALL | |
Java_jp_sprix_jni_ImageRecognize_setMRevision(JNIEnv *env, jobject thisObj, jint val){ | |
jclass clazz = env->GetObjectClass(thisObj); | |
jfieldID fid = env->GetStaticFieldID(clazz, "mRevision", "I"); | |
env->SetStaticIntField(clazz, fid, val); | |
} |
% echo $LD_LIBRARY_PATH
static { | |
try { | |
System.loadLibrary("HelloWorldJNI"); | |
System.loadLibrary("NativeSampleMathod"); | |
System.loadLibrary("ImageRecognize"); | |
} catch (Error e) { | |
System.out.println("Retry Load Native Library."); | |
System.loadLibrary("HelloWorldJNI"); | |
System.loadLibrary("NativeSampleMathod"); | |
System.loadLibrary("ImageRecognize"); | |
} | |
} |
public class NativeSampleMethod{ | |
public native void theNativeMethod(); | |
public vod javaMethod(){ | |
theNativeMethod(); | |
} | |
} |
% javac NativeSampleMethod.java
% javah -jni NativeSampleMethod
/* DO NOT EDIT THIS FILE - it is machine generated */ | |
#include <jni.h> | |
/* Header for class jp_sprix_jni_NativeSampleMathod */ | |
#ifndef _Included_jp_sprix_jni_NativeSampleMathod | |
#define _Included_jp_sprix_jni_NativeSampleMathod | |
#ifdef __cplusplus | |
extern "C" { | |
#endif | |
/* | |
* Class: jp_sprix_jni_NativeSampleMathod | |
* Method: theNativeMethod | |
* Signature: ()V | |
*/ | |
JNIEXPORT void JNICALL Java_jp_sprix_jni_NativeSampleMathod_theNativeMethod | |
(JNIEnv *, jobject); | |
#ifdef __cplusplus | |
} | |
#endif | |
#endif |
#include "jp_sprix_jni_NativeSampleMathod.h" | |
#include <iostream> | |
#include <cv.h> | |
#include <core/core.hpp> | |
#include <highgui/highgui.hpp> | |
using namespace cv; | |
using namespace std; | |
JNIEXPORT void JNICALL | |
Java_jp_sprix_jni_NativeSampleMathod_theNativeMethod(JNIEnv* env, jobject thisObj){ | |
cout << "test" << endl; | |
} |
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<!-- WARNING: Eclipse auto-generated file. | |
Any modifications will be overwritten. | |
To include a user specific buildfile here, simply create one in the same | |
directory with the processing instruction <?eclipse.ant.import?> | |
as the first entry and export the buildfile again. --> | |
<project basedir="." default="build" name="jni"> | |
<property environment="env" /> | |
<property name="ECLIPSE_HOME" value="../../eclipse" /> | |
<property name="debuglevel" value="source,lines,vars" /> | |
<property name="target" value="1.7" /> | |
<property name="source" value="1.7" /> | |
<path id="jni.classpath"> | |
<pathelement location="bin" /> | |
</path> | |
<target name="init"> | |
<mkdir dir="bin" /> | |
<copy includeemptydirs="false" todir="bin"> | |
<fileset dir="src"> | |
<exclude name="**/*.java" /> | |
</fileset> | |
</copy> | |
</target> | |
<target name="clean"> | |
<delete dir="bin" /> | |
</target> | |
<target depends="clean" name="cleanall" /> | |
<target depends="build-subprojects,build-project,makeh" name="build" /> | |
<target name="build-subprojects" /> | |
<target depends="init" name="build-project"> | |
<echo message="${ant.project.name}: ${ant.file}" /> | |
<javac debug="true" debuglevel="${debuglevel}" destdir="bin" includeantruntime="false" source="${source}" target="${target}"> | |
<src path="src" /> | |
<classpath refid="jni.classpath" /> | |
</javac> | |
</target> | |
<property name="h_dir" location="/root/git/rjni/jni/jnih" /> | |
<target name="makeh"> | |
<taskdef resource="cpptasks.tasks" /> | |
<javah classpath="/root/git/rjni/jni/bin" class="jp.sprix.jni.NativeSampleMathod" destdir="${h_dir}" /> | |
<cc link="shared" outfile="/root/git/rjni/jni/dist/NativeSampleMathod" objdir="${h_dir}"> | |
<includepath location="${env.JAVA_HOME}/include" /> | |
<includepath location="${env.JAVA_HOME}/include/linux" /> | |
<includepath location="/usr/local/include/opencv" /> | |
<includepath location="/usr/local/include/opencv2" /> | |
<fileset dir="${h_dir}" includes="NativeSampleMathod.cpp" /> | |
<libset dir="/usr/local/lib" libs="opencv_features2d,opencv_highgui,opencv_core,opencv_imgproc,opencv_objdetect,opencv_contrib,opencv_flann" /> | |
<libset libs="stdc++" /> | |
</cc> | |
</target> | |
<target description="Build all projects which reference this project. Useful to propagate changes." name="build-refprojects" /> | |
<target description="copy Eclipse compiler jars to ant lib directory" name="init-eclipse-compiler"> | |
<copy todir="${ant.library.dir}"> | |
<fileset dir="${ECLIPSE_HOME}/plugins" includes="org.eclipse.jdt.core_*.jar" /> | |
</copy> | |
<unzip dest="${ant.library.dir}"> | |
<patternset includes="jdtCompilerAdapter.jar" /> | |
<fileset dir="${ECLIPSE_HOME}/plugins" includes="org.eclipse.jdt.core_*.jar" /> | |
</unzip> | |
</target> | |
<target description="compile project with Eclipse compiler" name="build-eclipse-compiler"> | |
<property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter" /> | |
<antcall target="build" /> | |
</target> | |
</project> |
LD_LIBRARY_PATH
/opt/opencv-2.4.6gcc のコンパイルは、ノード cc で実行します。
<cc link="shared" outfile="/root/workspace/jni/dist/HelloWorldJNI" objdir="${h_dir}"> | |
<includepath location="${env.JAVA_HOME}/include" /> | |
<includepath location="${env.JAVA_HOME}/include/linux" /> | |
<includepath location="/opt/opencv-2.4.6/include/opencv" /> | |
<includepath location="/opt/opencv-2.4.6/include/opencv2" /> | |
<fileset dir="${h_dir}" includes="HelloWorldJNI.cpp" /> | |
<libset dir="/opt/opencv-2.4.6/lib" libs="opencv_features2d,opencv_highgui,opencv_core,opencv_imgproc,opencv_objdetect,opencv_contrib,opencv_flann" /> | |
<libset libs="stdc++" /> | |
</cc> |