I'm writing to ask about openCV to you.
First of all, I'm a student studying about openCV and I'd like to use openCV in Android Applications.
Until now, I have to download 'openCV Manager App' when I ran some applications..
Actually, I don't want to download other applications such a 'openCV Manager App' when I run application.
So, I searched about those problem on the Internet.. and basically, I followed below link's suggestion,
And..
I tried to modify onResum callback method as follows ..
public void onResume()
{
super.onResume();
// OpenCVLoader.initAsync(OpenCVLoader.OPENCV_VERSION_2_4_3, this, mLoaderCallback);
mLoaderCallback.onManagerConnected(LoaderCallbackInterface.SUCCESS);
}
Also, I tried to this way, (Actually, I don't know where this code is inserted..)
static {
if (!OpenCVLoader.initDebug()) {
// Handle initialization error
}
}
But, 'UnsatisfiedLinkError' is always occured when I run Application.
I think the reason of this problem is environment setting..
I already tried below processes
- NDK download and setting the environment variable
- Download openCV library
- Setting the project target
- execute ways to OnResume() as above
I had a problem about this error for weeks, I seriously need help .
Thanks in advance.