mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
IFace: Add more comments am: ba83133139 am: 14b9efef2c
Original change: https://googleplex-android-review.googlesource.com/c/platform/hardware/interfaces/+/15146596 Change-Id: I6ec3a37a9fe5facead20091bc562625579904c69
This commit is contained in:
@@ -19,6 +19,15 @@ package android.hardware.biometrics.face;
|
||||
@VintfStability
|
||||
@Backing(type="byte")
|
||||
enum EnrollmentType {
|
||||
/**
|
||||
* Default enrollment type.
|
||||
*/
|
||||
DEFAULT,
|
||||
|
||||
/**
|
||||
* Enrollment type for people with limited vision or mobility. For example,
|
||||
* enrollment of this type will not ask the user to move their head or
|
||||
* look directly at the device.
|
||||
*/
|
||||
ACCESSIBILITY,
|
||||
}
|
||||
|
||||
@@ -16,4 +16,23 @@
|
||||
|
||||
package android.hardware.biometrics.face;
|
||||
|
||||
@VintfStability @Backing(type="byte") enum FaceSensorType { UNKNOWN, RGB, IR }
|
||||
@VintfStability
|
||||
@Backing(type="byte")
|
||||
enum FaceSensorType {
|
||||
/**
|
||||
* Placeholder value used for default initialization of FaceSensorType.
|
||||
* This value means FaceSensorType wasn't explicitly initialized and must
|
||||
* be discarded by the recipient.
|
||||
*/
|
||||
UNKNOWN,
|
||||
|
||||
/**
|
||||
* The face sensor is an RGB camera.
|
||||
*/
|
||||
RGB,
|
||||
|
||||
/**
|
||||
* The face sensor is an infrared camera.
|
||||
*/
|
||||
IR,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user