FaceLivenessStatus
enum FaceLivenessStatus : UInt, @unchecked Sendable
Liveness status of person in video, indicating they appear to be alive and real or a spoof that isn’t a live person.
-
Indicates liveness could not be computed
Declaration
Swift
case notComputed = 0
-
Indicatesliveness check failes
Declaration
Swift
case failed = 1
-
Indicates the face analyzed is live
Declaration
Swift
case live = 2
-
Indicates the face analyzed is a spoof
Declaration
Swift
case spoof = 3
-
Indicates the face analysis is completed, but result is only queryable from service
Declaration
Swift
case completedResultQueryableFromService = 4