Android UnsatisfiedLinkError with OpenCV 2.4.2
问题 just trying to do a simple openCV android program. Downloaded and installed OpenCV for Android following the instructions here and added the OpenCV Library 2.4.2 as a library project for my own android project like the instructions state. However when I compile the standard "Hello World Program", as follows, it fails if I include the Mat mat = new Mat(); line, but succeeds otherwise. package com.example; import org.opencv.core.Mat; import android.app.Activity; import android.os.Bundle; public