Class: Aws::Rekognition::Types::SearchUsersByImageResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::SearchUsersByImageResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#face_model_version ⇒ String
Version number of the face detection model associated with the input collection CollectionId.
-
#searched_face ⇒ Types::SearchedFaceDetails
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.
-
#unsearched_faces ⇒ Array<Types::UnsearchedFace>
List of UnsearchedFace objects.
-
#user_matches ⇒ Array<Types::UserMatch>
An array of UserID objects that matched the input face, along with the confidence in the match.
Instance Attribute Details
#face_model_version ⇒ String
Version number of the face detection model associated with the input collection CollectionId.
6541 6542 6543 6544 6545 6546 6547 6548 |
# File 'lib/aws-sdk-rekognition/types.rb', line 6541 class SearchUsersByImageResponse < Struct.new( :user_matches, :face_model_version, :searched_face, :unsearched_faces) SENSITIVE = [] include Aws::Structure end |
#searched_face ⇒ Types::SearchedFaceDetails
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.
6541 6542 6543 6544 6545 6546 6547 6548 |
# File 'lib/aws-sdk-rekognition/types.rb', line 6541 class SearchUsersByImageResponse < Struct.new( :user_matches, :face_model_version, :searched_face, :unsearched_faces) SENSITIVE = [] include Aws::Structure end |
#unsearched_faces ⇒ Array<Types::UnsearchedFace>
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.
6541 6542 6543 6544 6545 6546 6547 6548 |
# File 'lib/aws-sdk-rekognition/types.rb', line 6541 class SearchUsersByImageResponse < Struct.new( :user_matches, :face_model_version, :searched_face, :unsearched_faces) SENSITIVE = [] include Aws::Structure end |
#user_matches ⇒ Array<Types::UserMatch>
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.
6541 6542 6543 6544 6545 6546 6547 6548 |
# File 'lib/aws-sdk-rekognition/types.rb', line 6541 class SearchUsersByImageResponse < Struct.new( :user_matches, :face_model_version, :searched_face, :unsearched_faces) SENSITIVE = [] include Aws::Structure end |