FaceRecognitionStatus

enum FaceRecognitionStatus : UInt, @unchecked Sendable

The possible outcomes of attempting to recognize a face.

  • Indicates recognition was not computed

    Declaration

    Swift

    case notComputed = 0
  • Indicates recognition failed

    Declaration

    Swift

    case failed = 1
  • Indicates face was not recognized

    Declaration

    Swift

    case notRecognized = 2
  • Indicates face was recognized.

    Declaration

    Swift

    case recognized = 3
  • Indicates the face analysis is completed, but result is only queryable from service

    Declaration

    Swift

    case completedResultQueryableFromService = 4