I'm trying to run openCV library on a java web project using eclipse, and the steps I followed are shown in this link : http://docs.opencv.org/doc/tutorials/introduction/desktop_java/java_dev_intro.html#java-dev-intro
The problem is, in the web project we have to put the .jar files in the WEB-INF/bin folder, so in my case its a user library not a jar file, and when I compile the code it throws the following exception:
java.lang.UnsatisfiedLinkError: no opencv_java246 in java.library.path
at java.lang.ClassLoader.loadLibrary(Unknown Source)
at java.lang.Runtime.loadLibrary0(Unknown Source)
at java.lang.System.loadLibrary(Unknown Source)
Can you help me importing the native library in other way ?
Thanks