Reproduce MTCNN using Tensorflow. Contribute to AITTSMD/MTCNN-Tensorflow development by creating an account on GitHub.
基本思路也很简单,先利用MTCNN的进行人脸检测,当然也可以使用其他的人脸检测方法,如Dilb,OpenCV,OpenFace人脸检测等等,然后再利用faceNet进行人脸识别,faceNet可简单看成是提取人脸特征的CNN网络,这个特征就是embadding了,有了人脸特征embadding,最后一步,就只需要与数据库人脸特征进行相似性比较,即可完成人脸识别的任务。
After several tries I could not get the detector to work. Can you add a pre-cropped example/image. ghost mentioned this issue Jan 27, 2018 Update face_embedding.py #18 Closed Collaborator nttstar commented Jan 27, 2018 You can use a MTCNN cropped image. nttstar closed this as comple...
Face detector/embeddings based on MTCNN, tensorflow and golang Implementation based onhttps://github.com/davidsandberg/facenet. Tensorflow (1.4.1) and the golang binding are required. Model filecmd/mtcnn.pbis converted fromfacenettoo (seescripts/convert.py. You will need to addfacenet/srcto PYTHO...