Ask Your Question

Revision history [back]

java.lang.UnsatisfiedLinkError: Native method not found exception for any OpenCV class or function means, that you tries to use it or construct object before library initialization. In you case you tries to construct VideoCapture in View constructor, or some other place, when OpenCV is not ready. I recommend you to construct your OpenCV-related view and other related objects in on onManagerConnected callback like it is done in all samples.