Example usage for android.hardware.camera2.params Face getId

List of usage examples for android.hardware.camera2.params Face getId

Introduction

In this page you can find the example usage for android.hardware.camera2.params Face getId.

Prototype

public int getId() 

Source Link

Document

An unique id per face while the face is visible to the tracker.

Usage

From source file:com.android.camera2.its.ItsSerializer.java

@SuppressWarnings("unchecked")
private static Object serializeFace(Face face) throws org.json.JSONException {
    JSONObject faceObj = new JSONObject();
    faceObj.put("bounds", serializeRect(face.getBounds()));
    faceObj.put("score", face.getScore());
    faceObj.put("id", face.getId());
    faceObj.put("leftEye", serializePoint(face.getLeftEyePosition()));
    faceObj.put("rightEye", serializePoint(face.getRightEyePosition()));
    faceObj.put("mouth", serializePoint(face.getMouthPosition()));
    return faceObj;
}