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?
You have several ways to make the
.dll
accessible:Load the
.dll
explicitly in the source code:Specify the
java.library.path
on thejava
command line by using the-D
option:Place your
.dll
in a directory that is in the system property,java.library.path
.