Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OpenCV + Java = UnsatisfiedLinkError

Tags:

I need capture a video stream from my USB webcam, for this i use Opencv 2.4.6 for developing in Java. I follow the steps listed in here

I add the "C:\opencv\build\java\x64" dir to my System PATH and include the "opencv-246.jar" file into my libraries on ECLIPSE. When y run the explame

import org.opencv.core.Core;
import org.opencv.core.CvType;
import org.opencv.core.Mat;

public class Main {
    public static void main(String[] args) {
        System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
        Mat m  = Mat.eye(3, 3, CvType.CV_8UC1);
        System.out.println("m = " + m.dump());
    }
}

i get

m = [1, 0, 0;
  0, 1, 0;
  0, 0, 1]

OK =)

but when i run

import org.opencv.highgui.VideoCapture;

public class Main {
    public static void main(String[] args) {
        VideoCapture vc = new VideoCapture(0);
        if(vc.isOpened()){
            System.out.println("Works!");
        }
    }
}

i get

Exception in thread "main" java.lang.UnsatisfiedLinkError: org.opencv.highgui.VideoCapture.n_VideoCapture(I)J
    at org.opencv.highgui.VideoCapture.n_VideoCapture(Native Method)
    at org.opencv.highgui.VideoCapture.<init>(VideoCapture.java:113)
    at Main.main(Main.java:5)

i add all the routes containes in:

C:\opencv\build\x64\vc10

one by one,but doesn`t work.

Finally i create a variable called OPENCV_DIR with C:\opencv\build\x64\vc10 but still getting UnsatisfiedLinkError.

PLEASE HELP ME!

like image 223
efmoyano Avatar asked Sep 05 '13 00:09

efmoyano


3 Answers

in your second example , you skipped this line

 System.loadLibrary(Core.NATIVE_LIBRARY_NAME); 

so the opencv libs werent loaded, UnsatisfiedLinkError, etc...

[edit]:

thanks to @Jishnu Prathap for highlighting the java.library path issue, if you run into problems setting that, you can still try to use an absolute path to the java wrapper so/dll/dylib like:

 System.load("/path to/our/java_wrapper"); 
like image 183
berak Avatar answered Sep 20 '22 00:09

berak


I had a similar error while using OpenCV with java.I did 2 things to resolve it.

  1. static{ System.loadLibrary(Core.NATIVE_LIBRARY_NAME); }
  2. I added the path to OpenCV dll or .so to javalibpath or path. which actually didnt work for some reason and i ended up putting the OpenCV dll in the system32 folder.
like image 44
Jishnu Prathap Avatar answered Sep 19 '22 00:09

Jishnu Prathap


Try the below code

import org.opencv.core.CvType;
import org.opencv.core.Mat;

import nu.pattern.OpenCV;

public class OpencvMain
{
    public static void main( String[] args )
    {
        OpenCV.loadLocally();
        Mat mat = Mat.eye( 3, 3, CvType.CV_8UC1 );
        System.out.println( "mat = " + mat.dump() );
    }
}
like image 41
Bala Avatar answered Sep 19 '22 00:09

Bala