AWT-EventQueue-0" java.lang.UnsatisfiedLinkError

7.9k Views Asked by At

I am trying to write a test program using Java CV. This is the error I am getting.

Exception in thread "AWT-EventQueue-0" java.lang.UnsatisfiedLinkError: C:\Users\neel\AppData\Local\Temp\javacpp28164099778499\jniopencv_core.dll: Can't find dependent libraries

Can anyone please help me?

2

There are 2 best solutions below

0
On

You have several ways to make the .dll accessible:

  • Load the .dll explicitly in the source code:

    System.load("C:\Users\neel\AppData\…\jniopencv_core.dll");
    
  • Specify the java.library.path on the java command line by using the -D option:

    java -Djava.library.path="C:\Users\neel\AppData\…\jniopencv_core.dll" …
    
  • Place your .dll in a directory that is in the system property, java.library.path.

0
On

I have solved the problem. Thank you friends. Apparently,the version and OpenCv and JavaCv should match. Thank you !