Posts

Showing posts with the label face-detection

Face Recognition using java with images or pictures

Face Recognition using java with images or pictures I am working on a Face recognition Project based on java. These are the pre-processing steps I use: After Detecting the face of a particular person in an image or picture, I want to recognise the same face in another images or pictures. So that I can collect or grouped all the images of that particular person in an seperate folder. For Face recognition I also checked the eigenface recogniser of opencv and it mainly has the implementation for the real time face detection and recognistion using web cam. To do so I googled and found CognitiveJ - Image Analysis in Java from GitHub. Link for that is :https://github.com/CognitiveJ/cognitivej also go through the videos : https://www.youtube.com/watch?v=WmzrKXWfa2o But its chargeable, so doesn't work for me. I also tried FAINT but it would not met my expectation as it has many plugins which specifically worked on windows OS and I am using Ubuntu. https://faint.sourceforge.io/ So p...