Facial Recognition in Java/Processing

后端 未结 4 778
自闭症患者
自闭症患者 2021-01-30 09:33

I am doing a project that requires some facial recognition. I am attempting to find a Java implementation of this. I am not looking for facial detection. We are trying to do fac

4条回答
  •  既然无缘
    2021-01-30 10:11

    I am working on the Face Detection/ Face Recognition topic as well. I can recommend the following links for Face Recognition:

    Direct Java Implementations:

    • JavaFaces: A Java Implementation of Face Recognition with Eigenfaces
    • Explanation and Refactoring of the above library
    • Article Face Recognition using Eigenfaces

    Implementation with OpenCV so you could use JavaCV to implement FR in Java:

    • OpenCV implementation of Face Recognition

    I used the first approach - using javafaces directly. If you accomplish using OpenCV/JavaCV to make FR work give me a hint please.

    Cheers

提交回复
热议问题