2013-05-06 67 views
3

從API級別14開始,android引入了Camera.Face api。這個API提供了以下字段:使用android Camera.face 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. 

我的問題是,使用這些屬性是有可能與它們的屬性創建熟悉的面孔的數據庫/列表,然後搭配新面孔,顯示多達熟悉的面孔?

回答

3

不,不可能僅憑這個API。 Facial recognitionface detection是兩種不同的技術。

從人臉檢測算法獲得的信息量太過於簡單,無法應用於識別算法。最好的辦法是使用邊界矩形來進一步分析圖像。

+0

我明白他們是不同的。我只是不知道android的人臉檢測中給出的數據是否可以用來創建面部識別 – Peter 2013-05-06 21:57:38