I have been using OpenCV for Android for a long time. It works fine, so far. But now I want to improve the performance and I want to go native. However, even native development itself is a little complicated for me in Android. Now I got the point of it and I can build simple applications by myself.
The point that I am stuck is how to add those libraries and include files in "native" folder of OpenCV Android package.
NOTE:I do not intent to create native application, but use only OpenCV as native. Other parts will still be java
Long story short, I just don't want to call native OpenCV methods with Java wrapper, but instead do everything related to OpenCV in native and then get the result to Java part.
Thanks for any efford in advance.