Once in a while I find an Android app on the play store that I really think is cool. As an Android developer, I often analyze the technical aspects of the app I'm interested in. It might be just the way the UI works or some specific use of sensors and graphics rendering. I often also would like to...
Cross-compiling OpenCV from sources and using it in my Android apps has long time been on my todo list.
I like to play with images and graphics stuff and OpenCV offers a lot of features related to image processing. Recently I found some free time and created my Pano Stitch & Crop app which uses...
Android 7.0 Nougat (API level 24) introduced the native camera API, which finally allowed fine-grained control of camera directly from C++.
The new API allows you to access image data directly in C, without the need to pass them from Java. Therefore, there might be some (small) performance ga...