How to initialize OpenCV libs on Android?
I'm using android studio, and I managed to get my application to build by editing my build scripts and copying the sdk library folders into my project. Autocomplete and building works. However, I get the following runtime error:
java.lang.UnsatisfiedLinkError: Native method not found
I did some research and it appears that the libraries need to be initialized first. How do I do this?
"it appears that the libraries need to be initialized first. " - yes, that's true.
basically, you can't call any opencv related code, until the c++ native libs finished loading.
could you edit your question again, and show (some) of your code, so we know, where to hook in ?