3

从 API 级别 14 开始,android 引入了 Camera.Face api。此 api 为您提供以下字段:

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.

我的问题是,使用这些属性是否可以创建已知面孔及其属性的数据库/列表,然后匹配出现已知面孔的新面孔?

4

1 回答 1

3

不,仅使用该 API 是不可能的。人脸识别人脸检测是两种不同的技术。

从人脸检测算法中获取的信息量过于简单,无法应用于识别算法。您可以做的最好的事情是使用边界矩形来进一步分析图像。

于 2013-05-06T21:55:44.707 回答