java android中的人脸识别库
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/3318517/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Face recognition library in android
提问by Hunt
I there any Face recognition sdk/library available that one can use in to android ?
我有任何可以用于 android 的人脸识别 sdk/库吗?
whenever i search on google i just came across Recognizr , so does anyone has any idea about sdk or something like that which helps the developer in developing face recognition application
每当我在 google 上搜索时,我都会遇到 Recognizr,那么是否有人对 sdk 或类似有助于开发人员开发人脸识别应用程序的东西有任何想法
回答by Devon_C_Miller
Are you looking for face detection(find the face in the photo) or face recognition(identify the face in the photo)?
您是在寻找人脸检测(找到照片中的人脸)还是人脸识别(识别照片中的人脸)?
Facedetection.comhas a decent list of opensource and commercial software for detection and/or recognition.
Facedetection.com有一个不错的开源和商业软件列表,用于检测和/或识别。
For face recognition, here's what I found on SourceForge:
对于人脸识别,这是我在 SourceForge 上找到的内容:
- http://sites.google.com/site/elsamuko/c-cpp/opencv-facerecog
- https://github.com/b051/FaceReco(moved from facereco.com which now redirects to a sketchy, unrelated site)
- http://sites.google.com/site/elsamuko/c-cpp/opencv-facerecog
- https://github.com/b051/FaceReco (从 facereco.com 移出,现在重定向到一个粗略的、不相关的站点)
Then there are commercial offerings:
然后是商业产品:
When googling keeps handing you a result you don't want (e.g., Recognizr), the trick is to add that term to your search with a leading minus (-recognizr) to negate the term.
当谷歌搜索不断向您提供您不想要的结果(例如 Recognizr)时,诀窍是将该词添加到您的搜索中,并使用前导减号 ( -recognizr) 来否定该词。

