Searched defs:face (Results 1 - 3 of 3) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
H A DItsSerializer.java113 private static Object serializeFace(Face face) argument
116 faceObj.put("bounds", serializeRect(face.getBounds()));
117 faceObj.put("score", face.getScore());
118 faceObj.put("id", face.getId());
119 if (face.getLeftEyePosition() != null) {
120 faceObj.put("leftEye", serializePoint(face.getLeftEyePosition()));
122 if (face.getRightEyePosition() != null) {
123 faceObj.put("rightEye", serializePoint(face.getRightEyePosition()));
125 if (face.getMouthPosition() != null) {
126 faceObj.put("mouth", serializePoint(face
[all...]
/cts/tests/camera/src/android/hardware/camera2/cts/helpers/
H A DCameraMetadataGetter.java289 private static Object serializeFace(Face face) argument
292 faceObj.put("bounds", serializeRect(face.getBounds()));
293 faceObj.put("score", face.getScore());
294 faceObj.put("id", face.getId());
295 faceObj.put("leftEye", serializePoint(face.getLeftEyePosition()));
296 faceObj.put("rightEye", serializePoint(face.getRightEyePosition()));
297 faceObj.put("mouth", serializePoint(face.getMouthPosition()));
/cts/tests/tests/renderscript/src/android/renderscript/cts/
H A DLaunchClip.java44 void setup(boolean makeIn, boolean makeOut, int x, int y, int z, boolean face, boolean lods, argument
50 mHasFaces = face;

Completed in 246 milliseconds