このコードで 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 については値を取得していません。これらのパラメーターはデバイスに依存していることを検索しました。
これらのパラメータをサポートするデバイス名のリストを知りたいですか?
前もって感謝します。