AWSRekognitionSearchFacesByImageResponse

Objective-C

@interface AWSRekognitionSearchFacesByImageResponse

Swift

class AWSRekognitionSearchFacesByImageResponse
  • An array of faces that match the input face, along with the confidence in the match.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSRekognitionFaceMatch *> *_Nullable faceMatches;

    Swift

    var faceMatches: [AWSRekognitionFaceMatch]? { get set }
  • Version number of the face detection model associated with the input collection (CollectionId).

    Declaration

    Objective-C

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

    Swift

    var faceModelVersion: String? { get set }
  • The bounding box around the face in the input image that Amazon Rekognition used for the search.

    Declaration

    Objective-C

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

    Swift

    var searchedFaceBoundingBox: AWSRekognitionBoundingBox? { get set }
  • The level of confidence that the searchedFaceBoundingBox, contains a face.

    Declaration

    Objective-C

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

    Swift

    var searchedFaceConfidence: NSNumber? { get set }