Class: Aws::Rekognition::Types::FaceRecord

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#faceTypes::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.

Returns:



3109
3110
3111
3112
3113
3114
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3109

class FaceRecord < Struct.new(
  :face,
  :face_detail)
  SENSITIVE = []
  include Aws::Structure
end

#face_detailTypes::FaceDetail

Structure containing attributes of the face that the algorithm detected.

Returns:



3109
3110
3111
3112
3113
3114
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3109

class FaceRecord < Struct.new(
  :face,
  :face_detail)
  SENSITIVE = []
  include Aws::Structure
end