{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.Rekognition.Types.ComparedSourceImageFace -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.Rekognition.Types.ComparedSourceImageFace where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude import Amazonka.Rekognition.Types.BoundingBox -- | Type that describes the face Amazon Rekognition chose to compare with -- the faces in the target. This contains a bounding box for the selected -- face and confidence level that the bounding box contains a face. Note -- that Amazon Rekognition selects the largest face in the source image for -- this comparison. -- -- /See:/ 'newComparedSourceImageFace' smart constructor. data ComparedSourceImageFace = ComparedSourceImageFace' { -- | Bounding box of the face. boundingBox :: Prelude.Maybe BoundingBox, -- | Confidence level that the selected bounding box contains a face. confidence :: Prelude.Maybe Prelude.Double } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ComparedSourceImageFace' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'boundingBox', 'comparedSourceImageFace_boundingBox' - Bounding box of the face. -- -- 'confidence', 'comparedSourceImageFace_confidence' - Confidence level that the selected bounding box contains a face. newComparedSourceImageFace :: ComparedSourceImageFace newComparedSourceImageFace = ComparedSourceImageFace' { boundingBox = Prelude.Nothing, confidence = Prelude.Nothing } -- | Bounding box of the face. comparedSourceImageFace_boundingBox :: Lens.Lens' ComparedSourceImageFace (Prelude.Maybe BoundingBox) comparedSourceImageFace_boundingBox = Lens.lens (\ComparedSourceImageFace' {boundingBox} -> boundingBox) (\s@ComparedSourceImageFace' {} a -> s {boundingBox = a} :: ComparedSourceImageFace) -- | Confidence level that the selected bounding box contains a face. comparedSourceImageFace_confidence :: Lens.Lens' ComparedSourceImageFace (Prelude.Maybe Prelude.Double) comparedSourceImageFace_confidence = Lens.lens (\ComparedSourceImageFace' {confidence} -> confidence) (\s@ComparedSourceImageFace' {} a -> s {confidence = a} :: ComparedSourceImageFace) instance Data.FromJSON ComparedSourceImageFace where parseJSON = Data.withObject "ComparedSourceImageFace" ( \x -> ComparedSourceImageFace' Prelude.<$> (x Data..:? "BoundingBox") Prelude.<*> (x Data..:? "Confidence") ) instance Prelude.Hashable ComparedSourceImageFace where hashWithSalt _salt ComparedSourceImageFace' {..} = _salt `Prelude.hashWithSalt` boundingBox `Prelude.hashWithSalt` confidence instance Prelude.NFData ComparedSourceImageFace where rnf ComparedSourceImageFace' {..} = Prelude.rnf boundingBox `Prelude.seq` Prelude.rnf confidence