FaceDetector.Face[] faces =
new
FaceDetector.Face[
10
];
// 최대 인식할 얼굴수 설정
02.
FaceDetector detector =
new
FaceDetector(bitmap.getWidth(), bitmap.getHeight(), faces.length);
03.
int
numFaces = detector.findFaces(bitmap, faces);
// 얼굴 인식 실행
04.
for
(FaceDetector.Face face : faces) {
05.
PointF midPoint =
new
PointF();
06.
face.getMidPoint(midPoint);
//눈과 눈사의 가운데 지점
07.
float
eyesDistance = face.eyesDistance();
//눈과 눈사이의 거리
08.
//처리.
09.
}
android 에 faceDetector
sample
- http://d.hatena.ne.jp/bols-blue/20090818/1250562668
- http://blog.livedoor.jp/deeds_not_words/archives/624855.html
- http://www.anddev.org/quick_and_easy_facedetector_demo-t3856.html
'Program > Android' 카테고리의 다른 글
(안드로이드 게임 점프점프 다운)JumpJump [Android Game] 추천 (0) | 2011.02.24 |
---|---|
memory leak 회피하기 (0) | 2010.11.12 |
JAVA - Android Audio record and playback is corrupt (0) | 2010.11.11 |
안드로이드 단말(기기) 모델(기종) 정보 뽑아 오기 (0) | 2010.08.27 |
[Android] BitmapDrawable과 Bitmap (3) | 2010.05.20 |