public class FaceDetector.Face
extends Object
java.lang.Object | |
↳ | android.media.FaceDetector.Face |
A Face包含识别位图中的人脸位置的所有信息。
Constants |
|
---|---|
float |
CONFIDENCE_THRESHOLD 良好人脸识别的最小置信因子 |
int |
EULER_X 脸部的x轴欧拉角。 |
int |
EULER_Y 脸部的y轴欧拉角。 |
int |
EULER_Z 脸部的z轴欧拉角。 |
Public methods |
|
---|---|
float |
confidence() 返回介于0和1之间的置信因子。 |
float |
eyesDistance() 返回眼睛之间的距离。 |
void |
getMidPoint(PointF point) 设置眼睛中点的位置。 |
float |
pose(int euler) 返回脸部的姿势。 |
Inherited methods |
|
---|---|
From class java.lang.Object
|
float confidence ()
返回介于0和1之间的置信因子。这表示已发现的确实是一张脸。 0.3以上的置信度通常足够好。
Returns | |
---|---|
float |
void getMidPoint (PointF point)
设置眼睛中点的位置。
Parameters | |
---|---|
point |
PointF : the PointF coordinates (float values) of the face's mid-point |
float pose (int euler)
返回脸部的姿势。 也就是说,绕X,Y或Z轴旋转(三维欧几里得空间中的位置)。
Parameters | |
---|---|
euler |
int : the Euler axis to retrieve an angle from (EULER_X, EULER_Y or EULER_Z) |
Returns | |
---|---|
float |
the Euler angle of the of the face, for the given axis |