amazonka-rekognition-2.0: Amazon Rekognition SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Rekognition.Types.FaceMatch

Description

 
Synopsis

Documentation

data FaceMatch Source #

Provides face metadata. In addition, it also provides the confidence in the match of this face with the input face.

See: newFaceMatch smart constructor.

Constructors

FaceMatch' 

Fields

  • face :: Maybe Face

    Describes the face properties such as the bounding box, face ID, image ID of the source image, and external image ID that you assigned.

  • similarity :: Maybe Double

    Confidence in the match of this face with the input face.

Instances

Instances details
FromJSON FaceMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.FaceMatch

Generic FaceMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.FaceMatch

Associated Types

type Rep FaceMatch :: Type -> Type #

Read FaceMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.FaceMatch

Show FaceMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.FaceMatch

NFData FaceMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.FaceMatch

Methods

rnf :: FaceMatch -> () #

Eq FaceMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.FaceMatch

Hashable FaceMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.FaceMatch

type Rep FaceMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.FaceMatch

type Rep FaceMatch = D1 ('MetaData "FaceMatch" "Amazonka.Rekognition.Types.FaceMatch" "amazonka-rekognition-2.0-EaCrS9R3rWADqefEZvOx5B" 'False) (C1 ('MetaCons "FaceMatch'" 'PrefixI 'True) (S1 ('MetaSel ('Just "face") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Face)) :*: S1 ('MetaSel ('Just "similarity") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double))))

newFaceMatch :: FaceMatch Source #

Create a value of FaceMatch with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:face:FaceMatch', faceMatch_face - Describes the face properties such as the bounding box, face ID, image ID of the source image, and external image ID that you assigned.

$sel:similarity:FaceMatch', faceMatch_similarity - Confidence in the match of this face with the input face.

faceMatch_face :: Lens' FaceMatch (Maybe Face) Source #

Describes the face properties such as the bounding box, face ID, image ID of the source image, and external image ID that you assigned.

faceMatch_similarity :: Lens' FaceMatch (Maybe Double) Source #

Confidence in the match of this face with the input face.