Hello, I would like to write a JNI on Java with opencv_java248 but I'am having some difficulties. I know I could write it in Java thanks to opencv248.jar and opencv_java248.dll but my superior want me to do a JNI. So I read tutorials,docs etc.. and here what I wrote.
Filter.java :
import org.opencv.core.Mat;
import org.opencv.highgui.Highgui;
public class Filter {
static
{
System.loadLibrary("opencv_java248");
}
private static native void doNativeHistogramEqualisation(long src);
public static Mat doHistogramEqualisation(Mat src)
{
doNativeHistogramEqualisation(src.getNativeObjAddr());
return src;
}
public static void main(String[] args)
{
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
for (int i = 1;i<13;i++)
{
String path = i+".jpg";
Mat image = Highgui.imread("images/"+path);
Mat dst = new Mat();
dst = doHistogramEqualisation(image);
//doHoughLineTransform(image, 30, 50, 20, 14);
Highgui.imwrite("output/"+path,dst);
}
}
opencv_Filter.h: (Generated by javah)
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class opencv_Filter */
#ifndef _Included_opencv_Filter
#define _Included_opencv_Filter
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: opencv_Filter
* Method: doNativeHistogramEqualisation
* Signature: (J)J
*/
JNIEXPORT void JNICALL Java_opencv_Filter_doNativeHistogramEqualisation
(JNIEnv *, jclass, jlong);
#ifdef __cplusplus
}
#endif
#endif
opencv_Filter.cpp:
#include "opencv_Filter.h"
#include <iostream>
#include <opencv2/core/core.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
using namespace cv;
JNIEXPORT void JNICALL Java_opencv_Filter_doNativeHistogramEqualisation
(JNIEnv *jenv, jclass, jlong Jsrc)
{
Mat* src = (Mat*) Jsrc;
src->create(rows, cols, type);
std::memcpy(src->data, data, src->step * src->rows);
if(src.channels() != 1)
cvtColor( src, src, CV_BGR2GRAY );
equalizeHist( src, src );
return;
}
I make sure the opencv_java248.dll is linked but I keep getting the errors :
Exception in thread "main" java.lang.UnsatisfiedLinkError: opencv.Filter.doNativeHistogramEqualisation(J)V
at opencv.Filter.doNativeHistogramEqualisation(Native Method)
at opencv.Filter.doHistogramEqualisation(Filter.java:18)
at opencv.Filter.main(Filter.java:32)
I check the type of error and It say come from the native method but I can't figure what is the problem. I think it's because I am not compiling the .cpp but I'm not sure about that.
Thank you, very much if you can help me. Regards