1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
/*
* Copyright (C) 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.hardware.face;
import android.annotation.NonNull;
import android.hardware.biometrics.BiometricFaceConstants;
import android.os.Parcel;
import android.os.Parcelable;
/**
* A container for data common to {@link FaceAuthenticationFrame} and {@link FaceEnrollFrame}.
*
* @hide
*/
public final class FaceDataFrame implements Parcelable {
@BiometricFaceConstants.FaceAcquired private final int mAcquiredInfo;
private final int mVendorCode;
private final float mPan;
private final float mTilt;
private final float mDistance;
private final boolean mIsCancellable;
/**
* A container for data common to {@link FaceAuthenticationFrame} and {@link FaceEnrollFrame}.
*
* @param acquiredInfo An integer corresponding to a known acquired message.
* @param vendorCode An integer representing a custom vendor-specific message. Ignored unless
* {@code acquiredInfo} is {@code FACE_ACQUIRED_VENDOR}.
* @param pan The horizontal pan of the detected face. Values in the range [-1, 1] indicate a
* good capture.
* @param tilt The vertical tilt of the detected face. Values in the range [-1, 1] indicate a
* good capture.
* @param distance The distance of the detected face from the device. Values in the range
* [-1, 1] indicate a good capture.
* @param isCancellable Whether the ongoing face operation should be canceled.
*/
public FaceDataFrame(
@BiometricFaceConstants.FaceAcquired int acquiredInfo,
int vendorCode,
float pan,
float tilt,
float distance,
boolean isCancellable) {
mAcquiredInfo = acquiredInfo;
mVendorCode = vendorCode;
mPan = pan;
mTilt = tilt;
mDistance = distance;
mIsCancellable = isCancellable;
}
/**
* A container for data common to {@link FaceAuthenticationFrame} and {@link FaceEnrollFrame}.
*
* @param acquiredInfo An integer corresponding to a known acquired message.
* @param vendorCode An integer representing a custom vendor-specific message. Ignored unless
* {@code acquiredInfo} is {@code FACE_ACQUIRED_VENDOR}.
*/
public FaceDataFrame(@BiometricFaceConstants.FaceAcquired int acquiredInfo, int vendorCode) {
mAcquiredInfo = acquiredInfo;
mVendorCode = vendorCode;
mPan = 0f;
mTilt = 0f;
mDistance = 0f;
mIsCancellable = false;
}
/**
* @return An integer corresponding to a known acquired message.
*
* @see android.hardware.biometrics.BiometricFaceConstants
*/
@BiometricFaceConstants.FaceAcquired
public int getAcquiredInfo() {
return mAcquiredInfo;
}
/**
* @return An integer representing a custom vendor-specific message. Ignored unless
* {@code acquiredInfo} is {@link
* android.hardware.biometrics.BiometricFaceConstants#FACE_ACQUIRED_VENDOR}.
*
* @see android.hardware.biometrics.BiometricFaceConstants
*/
public int getVendorCode() {
return mVendorCode;
}
/**
* @return The horizontal pan of the detected face. Values in the range [-1, 1] indicate a good
* capture.
*/
public float getPan() {
return mPan;
}
/**
* @return The vertical tilt of the detected face. Values in the range [-1, 1] indicate a good
* capture.
*/
public float getTilt() {
return mTilt;
}
/**
* @return The distance of the detected face from the device. Values in the range [-1, 1]
* indicate a good capture.
*/
public float getDistance() {
return mDistance;
}
/**
* @return Whether the ongoing face operation should be canceled.
*/
public boolean isCancellable() {
return mIsCancellable;
}
private FaceDataFrame(@NonNull Parcel source) {
mAcquiredInfo = source.readInt();
mVendorCode = source.readInt();
mPan = source.readFloat();
mTilt = source.readFloat();
mDistance = source.readFloat();
mIsCancellable = source.readBoolean();
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeInt(mAcquiredInfo);
dest.writeInt(mVendorCode);
dest.writeFloat(mPan);
dest.writeFloat(mTilt);
dest.writeFloat(mDistance);
dest.writeBoolean(mIsCancellable);
}
public static final Creator<FaceDataFrame> CREATOR = new Creator<FaceDataFrame>() {
@Override
public FaceDataFrame createFromParcel(Parcel source) {
return new FaceDataFrame(source);
}
@Override
public FaceDataFrame[] newArray(int size) {
return new FaceDataFrame[size];
}
};
}
|