OpenCV Documentation for Android

I am new to computer vision, with no prior experience. I am trying to develop a face recognition application for Android devices using OpenCV. I installed OpenCV, but I have no idea how to use it. There seems to be no specific documentation for Android for OpenCV. How to find out how to use OpenCV in an Android app?

+4
source share
1 answer

The best resource I've found is just the OpenCV Android Tutorial . This goes through the opencv android sample code in the samples directory of the source that you extracted to install opencv. (i.e. OPENCV_PATH / samples / android). There are other patterns, including one for face detection.

The opencv site also has android docs .

There is also an opencv face recognition guide that can be useful for getting started, even if it is not Android specific.

+1
source

Source: https://habr.com/ru/post/1435678/


All Articles