基本思路也很简单,先利用MTCNN的进行人脸检测,当然也可以使用其他的人脸检测方法,如Dilb,OpenCV,OpenFace人脸检测等等,然后再利用faceNet进行人脸识别,faceNet可简单看成是提取人脸特征的CNN网络,这个特征就是embadding了,有了人脸特征embadding,最后一步,就只需要与数据库人脸特征进行相似性比较,即可完成人脸识别的任务。
Python MtcnnDetector - 33 examples found. These are the top rated real world Python examples of mtcnn_detector.MtcnnDetector extracted from open source projects. You can rate examples to help us improve the quality of examples.
Reproduce MTCNN using Tensorflow. Contribute to AITTSMD/MTCNN-Tensorflow development by creating an account on GitHub.
mtcnn.go README MIT license goface 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...