libZSservicesZSamazonka-rekognitionZSamazonka-rekognition
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.Rekognition.Types.CompareFacesMatch

Description

 
Synopsis

Documentation

data CompareFacesMatch Source #

Provides information about a face in a target image that matches the source image face analyzed by CompareFaces. The Face property contains the bounding box of the face in the target image. The Similarity property is the confidence that the source image face matches the face in the bounding box.

See: newCompareFacesMatch smart constructor.

Constructors

CompareFacesMatch' 

Fields

Instances

Instances details
Eq CompareFacesMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.CompareFacesMatch

Read CompareFacesMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.CompareFacesMatch

Show CompareFacesMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.CompareFacesMatch

Generic CompareFacesMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.CompareFacesMatch

Associated Types

type Rep CompareFacesMatch :: Type -> Type #

NFData CompareFacesMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.CompareFacesMatch

Methods

rnf :: CompareFacesMatch -> () #

Hashable CompareFacesMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.CompareFacesMatch

FromJSON CompareFacesMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.CompareFacesMatch

type Rep CompareFacesMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.CompareFacesMatch

type Rep CompareFacesMatch = D1 ('MetaData "CompareFacesMatch" "Amazonka.Rekognition.Types.CompareFacesMatch" "libZSservicesZSamazonka-rekognitionZSamazonka-rekognition" 'False) (C1 ('MetaCons "CompareFacesMatch'" 'PrefixI 'True) (S1 ('MetaSel ('Just "similarity") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: S1 ('MetaSel ('Just "face") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ComparedFace))))

newCompareFacesMatch :: CompareFacesMatch Source #

Create a value of CompareFacesMatch 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:similarity:CompareFacesMatch', compareFacesMatch_similarity - Level of confidence that the faces match.

$sel:face:CompareFacesMatch', compareFacesMatch_face - Provides face metadata (bounding box and confidence that the bounding box actually contains a face).

compareFacesMatch_similarity :: Lens' CompareFacesMatch (Maybe Double) Source #

Level of confidence that the faces match.

compareFacesMatch_face :: Lens' CompareFacesMatch (Maybe ComparedFace) Source #

Provides face metadata (bounding box and confidence that the bounding box actually contains a face).