Java programming, opencv unsatisfied link error
问题 OpenCV libraries gives unsatisfied link error in capturing a video stream. Where should be the opencv 3.2.0 libraries? What is the correct path for packages of opencv classes? Code where to generate this error: package opencv; import org.opencv.core.*; import org.opencv.imgcodecs.Imgcodecs; import org.opencv.videoio.VideoCapture; public class VideoCap { public static void main (String args[]){ System.loadLibrary(Core.NATIVE_LIBRARY_NAME); // error VideoCapture camera = new VideoCapture(0); if