Class: Aws::Rekognition::Types::FaceSearchSettings

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb

Overview

Input face recognition parameters for an Amazon Rekognition stream processor. Includes the collection to use for face recognition and the face attributes to detect. Defining the settings is required in the request parameter for CreateStreamProcessor.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#collection_idString

The ID of a collection that contains faces that you want to search for.

Returns:

  • (String)


3133
3134
3135
3136
3137
3138
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3133

class FaceSearchSettings < Struct.new(
  :collection_id,
  :face_match_threshold)
  SENSITIVE = []
  include Aws::Structure
end

#face_match_thresholdFloat

Minimum face match confidence score that must be met to return a result for a recognized face. The default is 80. 0 is the lowest confidence. 100 is the highest confidence. Values between 0 and 100 are accepted, and values lower than 80 are set to 80.

Returns:

  • (Float)


3133
3134
3135
3136
3137
3138
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3133

class FaceSearchSettings < Struct.new(
  :collection_id,
  :face_match_threshold)
  SENSITIVE = []
  include Aws::Structure
end