rekognition_search_faces: For a given input face ID, searches for matching faces in the...

View source: R/rekognition_operations.R

rekognition_search_facesR Documentation

For a given input face ID, searches for matching faces in the collection the face belongs to

Description

For a given input face ID, searches for matching faces in the collection the face belongs to. You get a face ID when you add a face to the collection using the index_faces operation. The operation compares the features of the input face with faces in the specified collection.

See https://www.paws-r-sdk.com/docs/rekognition_search_faces/ for full documentation.

Usage

rekognition_search_faces(
  CollectionId,
  FaceId,
  MaxFaces = NULL,
  FaceMatchThreshold = NULL
)

Arguments

CollectionId

[required] ID of the collection the face belongs to.

FaceId

[required] ID of a face to find matches for in the collection.

MaxFaces

Maximum number of faces to return. The operation returns the maximum number of faces with the highest confidence in the match.

FaceMatchThreshold

Optional value specifying the minimum confidence in the face match to return. For example, don't return any matches where confidence in matches is less than 70%. The default value is 80%.


paws.machine.learning documentation built on Sept. 12, 2023, 1:14 a.m.