blob: 09fd9e5093752a6949ab6f2f0f1905edea344920 [file] [log] [blame]
/*
* 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.biometrics.face;
import android.hardware.biometrics.common.CommonProps;
import android.hardware.biometrics.face.FaceSensorType;
/**
* @hide
*/
@VintfStability
parcelable SensorProps {
/**
* Statically configured properties that apply to this face sensor.
*/
CommonProps commonProps;
/**
* A statically configured sensor type representing this face sensor.
*/
FaceSensorType sensorType = FaceSensorType.UNKNOWN;
/**
* Whether or not the HAL is responsible for showing the face enrollment preview to the user.
* Devices with multiple front camera sensors can set this to false and rely on the framework to
* show the preview with one of the unused cameras. Devices with a single front sensor must set
* this to true and configure their send their camera stream to the preview surface provided by
* the framework.
*/
boolean halControlsPreview;
/**
* The ID of the display that's used for enrollment preview. This must correspond to the
* android.hardware.DisplayManager#getDisplay Android API. This is useful for devices with
* multiple displays to ensure the correct display is used for this face sensor.
*/
int previewDisplayId;
/**
* For implementations where the HAL manages the preview, this is the width, in pixels, of each
* frame that the camera is set up to output.
*/
int enrollPreviewWidth;
/**
* For implementations where the HAL manages the preview, this is the height, in pixels, of
* each frame that the camera is set up to output.
*/
int enrollPreviewHeight;
/**
* For implementations where the HAL manages the preview, this is the distance in pixels that
* the enrollment preview should be translated. This is typically used by devices where the
* camera used for enrollment preview is not centered.
*/
float enrollTranslationX;
/**
* For implementations where the HAL manages the preview, this is the distance in pixels that
* the enrollment preview should be translated.
*/
float enrollTranslationY;
/**
* For implementations where the HAL manages the preview, this is the scale factor that should
* be applied when configuring the preview texture.
*/
float enrollPreviewScale;
/**
* Specifies whether or not the implementation supports ISession#detectInteraction.
*/
boolean supportsDetectInteraction;
}