Reputation: 2930
I am a newbie to the area of computer vision, with no prior experience. I am trying to develop a face recognition app for Android devices using OpenCV. I have installed OpenCV, but I have no idea how to use it. It seems like there is no Android specific documentation for OpenCV. How can I learn how to use OpenCV in my Android app?
Upvotes: 5
Views: 3035
Reputation: 870
The best resource I have found is just OpenCV's Android Tutorial. This goes through the opencv android sample code within the samples directory of the source that you extracted to install opencv. (ie. OPENCV_PATH/samples/android). There are other samples there including one for face detection.
There are also android docs on the opencv site.
There is also an opencv face recognition tutorial which may be useful to get you started even though it is not android specific.
Upvotes: 1