首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >使用android Camera.face api可以进行人脸识别吗?

使用android Camera.face api可以进行人脸识别吗?
EN

Stack Overflow用户
提问于 2013-05-07 05:52:26
回答 1查看 773关注 0票数 3

从api level 14开始,安卓引入了Camera.Face API。此接口为您提供以下字段:

代码语言:javascript
运行
复制
int id  - An unique id per face while the face is visible to the tracker.

Point leftEye - The coordinates of the center of the left eye.

Point mouth - The coordinates of the center of the mouth.

Rect rect - Bounds of the face.

Point rightEye - The coordinates of the center of the right eye.

int score -The confidence level for the detection of the face.

我的问题是,使用这些属性,是否有可能创建一个已知面孔及其属性的数据库/列表,然后将显示为已知面孔的新面孔进行匹配?

EN

回答 1

Stack Overflow用户

发布于 2013-05-07 05:55:45

不,仅使用该API是不可能的。Facial recognitionface detection是两种不同的技术。

从面部检测算法获得的信息量太简单,不能应用于识别算法。您可以做的最好的是使用边界矩形来进一步分析图像。

票数 3
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/16407894

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档