Opencv face recognition
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!!!!!!!!
there's always a way but it's not a quick one for java
Can you please suggest that one of the quick way??
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. ;)