2013-05-06 3 views
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. 

내 질문에, 이러한 속성을 사용하는 것이 그들의 속성과 함께 알려진 얼굴의 데이터베이스/목록을 만든 다음 알려진면에 표시 새로운 얼굴과 일치 할 수있다 ?

답변

3

아니요, 해당 API만으로는 불가능합니다. Facial recognitionface detection은 두 가지 기술입니다.

얼굴 인식 알고리즘에서 얻는 정보의 양은 인식 알고리즘에 적용하기에는 너무 단순합니다. 당신이 할 수있는 최선의 방법은 경계 사각형을 사용하여 이미지를 더 자세히 분석하는 것입니다.

+0

나는 그것이 다른 점을 이해합니다. 안드로이드의 얼굴 탐지에서 주어진 데이터가 안면 인식을 만드는데 이용 될 수 있는지 나는 알지 못했다. – Peter

관련 문제