Skip to content Skip to sidebar Skip to footer

Android Facedetector.face Euler Angles Are 0 All The Time

I'm trying to get a the Euler angle of a Face that is detected by FaceDetector. Here is what I use to output to Logcat: Log.v('debug', ' X: ' + face.pose(Face.EULER_X) + ' Y: ' + f

Solution 1:

Yeah the FaceDetector from API 1 never returns a pose angle. You can look at the source code to verify.

The newer FaceDetectionListener from API 14 will return a pose angle, but it's only available on a limited number of devices right now. Not even all devices running API 14 can use it. You have to call getMaxNumDetectedFaces() to see if your device supports that API.

You can alternately try using OpenCV. A couple options for that are http://code.opencv.org/projects/opencv/wiki/OpenCV4Android and http://code.google.com/p/javacv/. In my experience they aren't worth the hassle unless you really, really need the pose angle.

Solution 2:

Solution 3:

Set the detector setMode to ACCURATE_MODE

Here is an example that worked for me in Kotlin:

valdetector= FaceDetector.Builder(context)
            .setClassificationType(FaceDetector.ACCURATE_MODE)
            .setMode(FaceDetector.ACCURATE_MODE)
            .setTrackingEnabled(true)
            .build()

Post a Comment for "Android Facedetector.face Euler Angles Are 0 All The Time"