Need help in recognising the image for face recognition app using OpenCV
I am using LBPHFaceRecognizer algorithm,and using following code :-- mJavaDetector.detectMultiScale(mGray, faces, 1.3, 2, Objdetect.CASCADE_FIND_BIGGEST_OBJECT, new Size(mAbsoluteFaceSize, mAbsoluteFaceSize), new Size());
. So which would be the best scenario for recognizing the images in OpenCv 4.1.0
which problem exactly are you trying to solve ? what is the goal of your app ?
(the facerecognizer classes there try to find the closest match to known persons in a database. probably not, what you need, but please explain)
While using the above code for face recognition,sometime it takes lot of time to recognize the face and sometime it even didn't recognize the face completely. So i need best configuration for face recognition to detectMultiScale using in low processor device. And is there any parameters available to change camera resolution in low end devices.
hey, that is detection only, not recognition. and yes, cascades are slow. use something else, like the dnn based face detection, or pico
I am using : faceRecognizer.predict(m, n, p); to predict and detect the face ,so using cascade detection of faces is fast but take more time to recognize the face. So how to improve the recognition time using cascade only.