我通过这段代码使用 FaceDetectionListener
@Override
public void onFaceDetection(Face[] faces, Camera camera) {
int id = 0;
int score = 0;
Point leftEye = null;
Point rightEye = null;
Rect rect = null;
Point mouth = null;
for (int i = 0; i < faces.length; i++) {
id = faces[i].id;
score = faces[i].score;
leftEye = faces[i].leftEye;
rightEye = faces[i].rightEye;
rect = faces[i].rect;
mouth = faces[i].mouth;
}
对于 score 和 Rect 我得到了价值,但对于 id 、 leftEye、rightEye 和 mouth 我没有得到价值。我搜索过这些参数取决于设备。
我想知道支持这些参数的设备名称列表?
提前致谢。