Opencv face recognition

asked 2014-07-02 02:51:48 -0600

updated 2014-07-02 03:10:10 -0600

berak gravatar image

Hi all, I am new to opencv. I want to ask if there is any quick way to recognize face using opencv, I have used haarcascades file to detect the face, but I want to recognize the face. Please help!!!!!!!!

edit retag flag offensive close merge delete

Comments

1

there's always a way but it's not a quick one for java

berak gravatar imageberak ( 2014-07-02 03:11:56 -0600 )edit

Can you please suggest that one of the quick way??

Random_user gravatar imageRandom_user ( 2014-07-11 02:17:39 -0600 )edit

if you can live with 15-20% error, just crop all (grayscale) images from the detection to the same size, say 100x100, and compare them with Core.norm(a,b, NORM_L2).

(in other words, roll your own. ;)

berak gravatar imageberak ( 2014-07-11 04:35:16 -0600 )edit