I have the code that is for to take snapshot but i am facing the problem of 'no opencv_java in java.library.java'. I have tried the all methods of opencv (install it, setup the .dll file, seted up .so file) but as like as before the problem remain same.
import org.opencv.core.*;
import org.opencv.highgui.Highgui;
import org.opencv.highgui.VideoCapture;
public class web
{
public static void main(String args[])
{
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
VideoCapture camera = new VideoCapture(0);
if (!camera.isOpened())
{
System.out.println("Error");
}
else
{
Mat frame = new Mat();
while (true)
{
if (camera.read(frame))
{
System.out.println("Frame Obtained");
System.out.println("Captured Frame Width " +
frame.width() + " Height " + frame.height());
Highgui.imwrite("camera.jpg", frame);
System.out.println("OK");
break;
}
}
}
camera.release();
}
}
Now how can I overcome this problem, I have already did the NATIVE library path
-Djava.library.path="C:\path to the .dll file"