QuickBirdEng / opencv-android

Easy way to integrate OpenCv into your Android project via Gradle

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OpenCV error: Cannot load info library for OpenCV

alexanderconner opened this issue · comments

Am I under the correct understanding that by adding this dependency I should be able to use the OpenCV libraries without manually downloading and importing the module from source in Android Studio/Gradle?

I've tried implementing the the normal and contribution versions, as well as older versions, but I am unable to run OpenCVLoader.initDebug() (and subsequently cannot use any of the library). Doing so gives the following errors:

image

It seems like it is still looking for the local dependencies and if I need to add them locally myself what is the purpose of this library?

I have seen the issue also mentioned below in the OpenCV project, so it might not be related to this project specifically but it hasn't seen much activity:
opencv/opencv#15567

Ahh figured it out. I had a conflict with this dependency and the source module in my Gradle build file. With the com.quickbirdstudios:opencv import you do not need to manually import the Open CV source code. Thanks.