ItFlyingStart
ItFlyingStart

Reputation: 271

Face recognition with JavaCV

Has someone successfully implemented the face recognition (thus not face detection!) with JavaCV? If yes, can you share your implementation ideas / source codes? Thanks.

Upvotes: 4

Views: 5239

Answers (4)

Daniel Jonker
Daniel Jonker

Reputation: 854

I know this is probably well too late, but I figured, just in case anyone else was still wondering I have developed/am still developing a face recognition app on android using JavaCV. It was for a uni project, and it can be found on my git-hub here:

I have adapted Stephen Reeds class that he mentioned in his comment to work through Android frames. It is a quite rough around the edges, nowhere near finished, and the facial recognition can only be seen through the log cat as it hasn't got an overlay on top of the camera preview yet. But it works.

Hope that helps.

Upvotes: 0

Gum Slashy
Gum Slashy

Reputation: 385

There are some examples on opencv installation folder as well and there are lot of examples on face detecting on the internet these are some of them try to go through this links hop you get some idea about it.

Upvotes: 0

Stephen Reed
Stephen Reed

Reputation: 39

I ported an OpenCV face recognition example to Java using JavaCV: check here

Upvotes: 3

Wudi
Wudi

Reputation: 9

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

Remember your "haarcascade_frontalface_alt.xml" must be in the 'src' Folder

This might help you : cvHaarDetectObjects

Upvotes: 0

Related Questions