RecognitionStatus
public enum RecognitionStatus : Equatable
Recognition status of the face, indicating its match against the previously provided reference face.
-
Indicates the face being recognized at a given
matchConfidence
stored as the associatedDecimal
.Declaration
Swift
case recognized(matchConfidence: Decimal)
-
Indicates the face not being recognized at a given
matchConfidence
stored as the associatedDecimal
.Declaration
Swift
case notRecognized(matchConfidence: Decimal)
-
Indicates the recognition is completed, but the recognition result is only queryable from service.
Declaration
Swift
case resultQueryableFromService
-
The given
matchConfidence
stored as the associatedDecimal
. It isnil
when the result is only queryable from service.Declaration
Swift
public var matchConfidence: Decimal? { get }