PassiveFaceCaptureModel
class PassiveFaceCaptureModel : ObservableObject
This class represents the model for the passive face capture session. It holds the data required to update the UI during the face capture process.
-
The current head pose of the captured face.
Declaration
Swift
var currentHeadPose: HeadPose?
-
The instruction for the user during the face capture process.
Declaration
Swift
var instruction: String?
-
Indicates whether the face capture process is completed or not.
Declaration
Swift
var isCompleted: Bool?
-
The error that occurred during the face capture process.
Declaration
Swift
var error: SDKErrors?