Existing example of a OpenCV, TensorFlow Android application
Hi,
I've been trying to find a working example of an Android application using OpenCV and TensorFlow Object Detection API on the android platform. I found lots of examples using TensorFlow directly, but I'd prefer using TensorFlow through OpenCV. I have a working application using some OpenCV features such as HAAR classifiers on android. If I can find a c++ example using TensorFlow's Object Detection API, can I just use that code? Will that run on Android - I'm having trouble finding exact literature about it. Can anyone recommend some article, that I couldn't find ? This guide: https://medium.com/mindorks/detection...
Seems overly complicated compared to how easy it was to get OpenCV running. I
Thanks a lot in advance!
there is an example app for opencv's dnn here
it's currently loading a caffe model, but changes needed would be minimal.
Thanks @berak ! I'll be looking at that example right now
Hi @berak , do you know if there is a way to improve performance ? I was hoping reducing classes would help. I already crop images down to 300x300, but on my OnePlus 5T it only manages to run at around 3fps. Thanks!
reducing classes won't help that much (wrong end of a pyramid), more reducing the input size even further
thank you berak.