OpenCV Android and Deep Learning Module
I am developing an Android app and I would like to call the deep learning module (http://docs.opencv.org/master/d5/de7/...) .Is it possible? More importantly are all functions of OpenCV exposed to OpenCV Android?
oh, hey, another one...
unfortunately, atm, it's not exposed to java or python, so you have to use JNI and c++, and build your own interface.
bear with the devs there, it's a pretty new thing (and good things take a while)
also, do you really want to do this on a small, low-power device ? dnn models are huge (most caffemodels are ~50mb) lots of layers, definitely gpu support required.
wouldn't you rather want to put it on a beefy server, and use your device just as a thin client ?