Google MLKit 能识别同一张脸吗?
Is Google MLKit able to recognize the same face?
我正在考虑在我的 Android 应用程序中实施 MLKit 人脸识别库。我唯一不明白的是,如果可能的话,我该如何比较两张照片并检测它们是否是同一个人。
我已阅读这些指南:
- https://firebase.google.com/docs/ml-kit/detect-faces
- https://medium.com/google-developer-experts/exploring-firebase-mlkit-on-android-introducing-mlkit-part-one-98fcfedbeee0
- https://medium.com/google-developer-experts/exploring-firebase-mlkit-on-android-face-detection-part-two-de7e307c52e0
谢谢
ML Kit检测面部轮廓,但不识别面部。所以无法判断检测到的两张人脸是不是同一个人
MLKit 做不到,这似乎是 MLKit 多年后才具备的功能。必须要用人脸识别,端上和云端都有解决方案。
我找到的关于设备端人脸识别的最佳回购,主要是因为它是无监督的(它不需要用户有训练数据(每个待检测的人的标签)):https://github.com/njordsir/Clustering-faces-android
我正在考虑在我的 Android 应用程序中实施 MLKit 人脸识别库。我唯一不明白的是,如果可能的话,我该如何比较两张照片并检测它们是否是同一个人。 我已阅读这些指南:
- https://firebase.google.com/docs/ml-kit/detect-faces
- https://medium.com/google-developer-experts/exploring-firebase-mlkit-on-android-introducing-mlkit-part-one-98fcfedbeee0
- https://medium.com/google-developer-experts/exploring-firebase-mlkit-on-android-face-detection-part-two-de7e307c52e0
谢谢
ML Kit检测面部轮廓,但不识别面部。所以无法判断检测到的两张人脸是不是同一个人
MLKit 做不到,这似乎是 MLKit 多年后才具备的功能。必须要用人脸识别,端上和云端都有解决方案。
我找到的关于设备端人脸识别的最佳回购,主要是因为它是无监督的(它不需要用户有训练数据(每个待检测的人的标签)):https://github.com/njordsir/Clustering-faces-android