OpenCV到JNI如何让它工作?

时间:2010-03-14 04:33:37

标签: java netbeans opencv face-detection dll

我想使用opencv和java进行人脸检测,在那个追求中我找到了这个“JNI2OPENCV”文件....但我对如何让它工作感到困惑,有人可以帮助我吗?

http://img519.imageshack.us/img519/4803/askaj.jpg

以下是FaceDetection.java

class JNIOpenCV {
    static {
        System.loadLibrary("JNI2OpenCV");
    }
    public native int[] detectFace(int minFaceWidth, int minFaceHeight, String cascade, String filename);
}

public class FaceDetection {
    private JNIOpenCV myJNIOpenCV;
    private FaceDetection myFaceDetection;

    public FaceDetection() {
        myJNIOpenCV = new JNIOpenCV();
        String filename = "lena.jpg";
        String cascade = "haarcascade_frontalface_alt.xml";

    int[] detectedFaces = myJNIOpenCV.detectFace(40, 40, cascade, filename);
    int numFaces = detectedFaces.length / 4;

        System.out.println("numFaces = " + numFaces);
        for (int i = 0; i < numFaces; i++) {
            System.out.println("Face " + i + ": " + detectedFaces[4 * i + 0] + " " + detectedFaces[4 * i + 1] + " " + detectedFaces[4 * i + 2] + " " + detectedFaces[4 * i + 3]);
        }
    }

    public static void main(String args[]) {
        FaceDetection myFaceDetection = new FaceDetection();   
    }
}

有谁告诉我怎样才能在Netbeans上做这个工作?我试过谷歌,但对这个特定主题的帮助非常明显。

我在netbeans项目中添加了整个文件夹作为Llibrary,当我尝试运行该文件时,我得到了followig wrroes。

Exception in thread "main" java.lang.UnsatisfiedLinkError: FaceDetection.JNIOpenCV.detectFace(IILjava/lang/String;Ljava/lang/String;)[I at FaceDetection.JNIOpenCV.detectFace(Native Method) at FaceDetection.FaceDetection.<init>(FaceDetection.java:19) at FaceDetection.FaceDetection.main(FaceDetection.java:29) Java Result: 1 BUILD SUCCESSFUL (total time: 2 seconds)

有谁告诉我使用它的确切方法?喜欢我所要做的一切?

3 个答案:

答案 0 :(得分:0)

如果您在Windows上使用JNI,Dependency Walker将成为您的朋友。

但是,在我们开始之前,先通过添加以下内容验证JRE是否可以找到您的JNIOpenCV.dll: System.out.println("java.library.path="+System.getProperty("java.library.path")); 到静态构造函数块。

但是,我认为这里的问题不是找到你的JNIOpenCV.dll文件,而是它所依赖的文件。在依赖walker中打开你的.dll(只需将其拖入那里)并查找任何错误消息(msjava.dll除外 - 忽略它,无所谓)。我的预感很可能是你需要Microsoft Visual C / C ++运行时库,从Visual Studio网站下载它们并将它们放在与你的dll相同的文件夹中。

祝你好运!

答案 1 :(得分:0)

你应该看看这里,一些例子与JNI联系在一起:

http://code.google.com/p/android-opencv/

答案 2 :(得分:0)

我使用OpenCV 2.3.1和Eclipse而不是Netbeans创建了一个可用的Android示例。

这个小tutorial描述了一个跟随火炬之光的机器人。该页面包含必要的步骤和源代码。