AWSRekognitionFace

Objective-C

@interface AWSRekognitionFace

Swift

class AWSRekognitionFace

Describes the face properties such as the bounding box, face ID, image ID of the input image, and external image ID that you assigned.

  • Bounding box of the face.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSRekognitionBoundingBox *_Nullable boundingBox;

    Swift

    var boundingBox: AWSRekognitionBoundingBox? { get set }
  • Confidence level that the bounding box contains a face (and not a different object such as a tree).

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable confidence;

    Swift

    var confidence: NSNumber? { get set }
  • Identifier that you assign to all the faces in the input image.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable externalImageId;

    Swift

    var externalImageId: String? { get set }
  • Unique identifier that Amazon Rekognition assigns to the face.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable faceId;

    Swift

    var faceId: String? { get set }
  • Unique identifier that Amazon Rekognition assigns to the input image.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable imageId;

    Swift

    var imageId: String? { get set }
  • The version of the face detect and storage model that was used when indexing the face vector.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable indexFacesModelVersion;

    Swift

    var indexFacesModelVersion: String? { get set }
  • Unique identifier assigned to the user.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable userId;

    Swift

    var userId: String? { get set }