67 lines
1.2 KiB
C++
Raw Normal View History

#include "common.h"
2012-06-08 08:11:17 +00:00
#include "opencv2/opencv_modules.hpp"
#ifdef HAVE_OPENCV_NONFREE
# include "opencv2/nonfree.hpp"
2012-06-08 08:11:17 +00:00
#endif
#ifdef HAVE_OPENCV_FEATURES2D
# include "opencv2/features2d.hpp"
2012-06-08 08:11:17 +00:00
#endif
#ifdef HAVE_OPENCV_VIDEO
# include "opencv2/video.hpp"
2012-06-08 08:11:17 +00:00
#endif
#ifdef HAVE_OPENCV_ML
# include "opencv2/ml.hpp"
2012-06-08 08:11:17 +00:00
#endif
#ifdef HAVE_OPENCV_CONTRIB
# include "opencv2/contrib.hpp"
#endif
extern "C" {
JNIEXPORT jint JNICALL
JNI_OnLoad(JavaVM* vm, void* )
{
JNIEnv* env;
if (vm->GetEnv((void**) &env, JNI_VERSION_1_6) != JNI_OK)
return -1;
2012-06-08 08:11:17 +00:00
bool init = true;
#ifdef HAVE_OPENCV_NONFREE
init &= cv::initModule_nonfree();
#endif
#ifdef HAVE_OPENCV_FEATURES2D
init &= cv::initModule_features2d();
#endif
#ifdef HAVE_OPENCV_VIDEO
init &= cv::initModule_video();
#endif
#ifdef HAVE_OPENCV_ML
init &= cv::initModule_ml();
#endif
#ifdef HAVE_OPENCV_CONTRIB
init &= cv::initModule_contrib();
#endif
2012-06-08 08:11:17 +00:00
if(!init)
return -1;
/* get class with (*env)->FindClass */
/* register methods with (*env)->RegisterNatives */
return JNI_VERSION_1_6;
}
JNIEXPORT void JNICALL
JNI_OnUnload(JavaVM*, void*)
{
//do nothing
}
2013-08-21 17:26:54 +04:00
} // extern "C"