Searched refs:faceScores (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraMetadataNative.java627 byte[] faceScores = new byte[numFaces];
643 faceScores[i] = (byte)face.getScore();
664 set(CaptureResult.STATISTICS_FACE_SCORES, faceScores);
671 byte[] faceScores = get(CaptureResult.STATISTICS_FACE_SCORES);
676 if (areValuesAllNull(faceDetectMode, faceScores, faceRectangles, faceIds, faceLandmarks)) {
695 if (faceScores == null || faceRectangles == null) {
698 } else if (faceScores.length != faceRectangles.length) {
700 faceScores.length, faceRectangles.length));
704 int numFaces = Math.min(faceScores.length, faceRectangles.length);
727 if (faceScores[
[all...]
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DFrameProcessor.cpp153 const uint8_t *faceScores = entry.data.u8; local
194 if (faceScores[i] == 0) {
198 if (faceScores[i] > 100) {
200 __FUNCTION__, i, faceScores[i]);
214 face.score = faceScores[i];

Completed in 104 milliseconds