Face Recognition Using JavaCV

Has anyone successfully implemented face recognition (thus not face recognition!) Using JavaCV? If so, can you share the ideas / source code for the implementation? Thanks.

+4
source share
4 answers

I ported the OpenCV face recognition example in Java using JavaCV: check here

+3
source

I don't know the answer, but here's the tip:

Remember that your "haarcascade_frontalface_alt.xml" must be in the "src" folder

This may help you: cvHaarDetectObjects

0
source

There are several examples in the opencv installation folder, and there are many examples of detecting faces on the Internet, some of them try to go through these links, you will get an idea about this.

0
source

I know this is probably too late, but I thought that just in case anyone else is interested that I developed / still developing a face recognition application on android using JavaCV. This was for the uni project, and can be found on my git-hub here :

I adapted the Stephen Reeds class, which he mentioned in his comment for working through the Android framework. It is rather rough around the edges, it’s not finished anywhere, and face recognition can only be seen through the den-cat, as it does not yet have an overlay on top of the camera’s preview. But it works.

Hope this helps.

0
source

All Articles