AWSRekognitionSearchUsersByImageResponse

Objective-C

@interface AWSRekognitionSearchUsersByImageResponse

Swift

class AWSRekognitionSearchUsersByImageResponse
  • 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 }
  • A list of FaceDetail objects containing the BoundingBox for the largest face in image, as well as the confidence in the bounding box, that was searched for matches. If no valid face is detected in the image the response will contain no SearchedFace object.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSRekognitionSearchedFaceDetails *_Nullable searchedFace;

    Swift

    var searchedFace: AWSRekognitionSearchedFaceDetails? { get set }
  • List of UnsearchedFace objects. Contains the face details infered from the specified image but not used for search. Contains reasons that describe why a face wasn’t used for Search.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSRekognitionUnsearchedFace *> *_Nullable unsearchedFaces;

    Swift

    var unsearchedFaces: [AWSRekognitionUnsearchedFace]? { get set }
  • An array of UserID objects that matched the input face, along with the confidence in the match. The returned structure will be empty if there are no matches. Returned if the SearchUsersByImageResponse action is successful.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSRekognitionUserMatch *> *_Nullable userMatches;

    Swift

    var userMatches: [AWSRekognitionUserMatch]? { get set }