Edit image with Android and OpenCV and JNI (C/C++)
Requires: opencv android SDK (2.4.13.2) android ndk (r14b) to build JNI eclipse + ADT plugin Note: tools version above while writing this blog. After tutorial you can: call C/C++ library in Java in your app edit image with android and opencv embed features wrote by C/C++ to Android (Java) app improve your app speed by using native (C/C++) idea to apply some secure method by using native code Source code: https://github.com/vmtram/OpencvJni Relative video: https://youtu.be/qCCC9Y1ldUs Create android project add a image view and a button to main layout, then import opencv library. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android= "http://schemas.android.com/apk/res/android" xmlns:tools= "http://schemas.android.com/tools" android:layout_width= "match_parent" android:layout_height= "match_parent" android:background= "@android:color/holo_green_dark"...