我做了一个Opencv的应用程序en windows,现在我正在使用JNI将此代码转换为Android但我遇到了一些问题。 具体而言,我的本机代码不会做任何事情。
这是我的Java类,我定义了我的本机方法:
package com.example.telo3;
import org.opencv.core.Mat;
public class Process {
static {
System.loadLibrary("nativo");
}
public Process(){
dir=inicializar_nativo();
}
public void Procesar(Mat framedetect, Mat framedraw){
procesar_nativo(dir,framedetect.getNativeObjAddr(),framedraw.getNativeObjAddr());
}
private long dir;
private static native long inicializar_nativo();
private static native void procesar_nativo(long thiz, long framedetect, long framedraw);
}
这是我的JNI代码:
#include "nativo.h"
#include <opencv2/objdetect/objdetect.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include "opencv2/video/tracking.hpp"
#include <iostream>
#include <stdio.h>
#include "FaceDetector.h"
#include "Draw.h"
#include "Almacena.h"
#include "Runnable.h"
using namespace std;
using namespace cv;
#include <android/log.h>
#define LOG_TAG "NATIVO"
#define LOGD(...) ((void)__android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__))
struct variables {
Almacena almacena;
Draw draw;
FaceDetector face_detector;
};
JNIEXPORT jlong JNICALL Java_com_example_telo3_Process_inicializar_1nativo(
JNIEnv *, jobject) {
long dir = (long) new variables();
return (dir);
}
JNIEXPORT void JNICALL Java_com_example_telo3_Process_procesar_1nativo(JNIEnv *,
jobject, jlong dir, jlong framedetect, jlong framedraw) {
Mat* telo =(Mat*)framedetect;
Mat* telo2= (Mat*)framedraw;
((variables*)dir)->almacena = ((variables*)dir)->face_detector.Detect(*telo);
//almacena = face_detector.Detect(frame_gray);
((variables*)dir)->draw.Dibujar(*telo2,((variables*)dir)->almacena);
//frame_capturado = draw.Dibujar(frame_capturado, almacena);
if( (((variables*)dir)->almacena.get_faces()).size() ==0){
LOGD("no detecto caras");
}
}
我认为我正确使用了Jni但是函数Detect无法正常工作,因为当我使用它时如果返回0。
答案 0 :(得分:0)
framedetect
是0吗?我根据这个做了一个测试应用程序并且它工作正常(也就是说,jlong被转换为和从中得到的,所以这不应该是问题)。
尝试使用ndk-gdb
捕获错误,以便更好地了解问题。将它附加到进程可能会有问题但是如果它立即崩溃,那么我喜欢在崩溃之前在java端放置断点,使用调试器在那里暂停执行,附加ndk-gdb
并继续让java进程继续。
另外,我建议使用reinterpret_cast<jlong>
和reinterpret_cast<variables*>
代替C样式转换,并将该转换保存到单独的变量中以避免一直投射!清洁代码!