Class: Aws::Rekognition::Types::FaceRecord
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::FaceRecord
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Object containing both the face metadata (stored in the backend database), and facial attributes that are detected but aren't stored in the database.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#face ⇒ Types::Face
Describes the face properties such as the bounding box, face ID, image ID of the input image, and external image ID that you assigned.
-
#face_detail ⇒ Types::FaceDetail
Structure containing attributes of the face that the algorithm detected.
Instance Attribute Details
#face ⇒ Types::Face
Describes the face properties such as the bounding box, face ID, image ID of the input image, and external image ID that you assigned.
3122 3123 3124 3125 3126 3127 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3122 class FaceRecord < Struct.new( :face, :face_detail) SENSITIVE = [] include Aws::Structure end |
#face_detail ⇒ Types::FaceDetail
Structure containing attributes of the face that the algorithm detected.
3122 3123 3124 3125 3126 3127 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3122 class FaceRecord < Struct.new( :face, :face_detail) SENSITIVE = [] include Aws::Structure end |