This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-rekognition/include/aws/rekognition/model/CompareFacesResult.h

332 lines
17 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/rekognition/Rekognition_EXPORTS.h>
#include <aws/rekognition/model/ComparedSourceImageFace.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/rekognition/model/OrientationCorrection.h>
#include <aws/rekognition/model/CompareFacesMatch.h>
#include <aws/rekognition/model/ComparedFace.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace Rekognition
{
namespace Model
{
class AWS_REKOGNITION_API CompareFacesResult
{
public:
CompareFacesResult();
CompareFacesResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CompareFacesResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The face in the source image that was used for comparison.</p>
*/
inline const ComparedSourceImageFace& GetSourceImageFace() const{ return m_sourceImageFace; }
/**
* <p>The face in the source image that was used for comparison.</p>
*/
inline void SetSourceImageFace(const ComparedSourceImageFace& value) { m_sourceImageFace = value; }
/**
* <p>The face in the source image that was used for comparison.</p>
*/
inline void SetSourceImageFace(ComparedSourceImageFace&& value) { m_sourceImageFace = std::move(value); }
/**
* <p>The face in the source image that was used for comparison.</p>
*/
inline CompareFacesResult& WithSourceImageFace(const ComparedSourceImageFace& value) { SetSourceImageFace(value); return *this;}
/**
* <p>The face in the source image that was used for comparison.</p>
*/
inline CompareFacesResult& WithSourceImageFace(ComparedSourceImageFace&& value) { SetSourceImageFace(std::move(value)); return *this;}
/**
* <p>An array of faces in the target image that match the source image face. Each
* <code>CompareFacesMatch</code> object provides the bounding box, the confidence
* level that the bounding box contains a face, and the similarity score for the
* face in the bounding box and the face in the source image.</p>
*/
inline const Aws::Vector<CompareFacesMatch>& GetFaceMatches() const{ return m_faceMatches; }
/**
* <p>An array of faces in the target image that match the source image face. Each
* <code>CompareFacesMatch</code> object provides the bounding box, the confidence
* level that the bounding box contains a face, and the similarity score for the
* face in the bounding box and the face in the source image.</p>
*/
inline void SetFaceMatches(const Aws::Vector<CompareFacesMatch>& value) { m_faceMatches = value; }
/**
* <p>An array of faces in the target image that match the source image face. Each
* <code>CompareFacesMatch</code> object provides the bounding box, the confidence
* level that the bounding box contains a face, and the similarity score for the
* face in the bounding box and the face in the source image.</p>
*/
inline void SetFaceMatches(Aws::Vector<CompareFacesMatch>&& value) { m_faceMatches = std::move(value); }
/**
* <p>An array of faces in the target image that match the source image face. Each
* <code>CompareFacesMatch</code> object provides the bounding box, the confidence
* level that the bounding box contains a face, and the similarity score for the
* face in the bounding box and the face in the source image.</p>
*/
inline CompareFacesResult& WithFaceMatches(const Aws::Vector<CompareFacesMatch>& value) { SetFaceMatches(value); return *this;}
/**
* <p>An array of faces in the target image that match the source image face. Each
* <code>CompareFacesMatch</code> object provides the bounding box, the confidence
* level that the bounding box contains a face, and the similarity score for the
* face in the bounding box and the face in the source image.</p>
*/
inline CompareFacesResult& WithFaceMatches(Aws::Vector<CompareFacesMatch>&& value) { SetFaceMatches(std::move(value)); return *this;}
/**
* <p>An array of faces in the target image that match the source image face. Each
* <code>CompareFacesMatch</code> object provides the bounding box, the confidence
* level that the bounding box contains a face, and the similarity score for the
* face in the bounding box and the face in the source image.</p>
*/
inline CompareFacesResult& AddFaceMatches(const CompareFacesMatch& value) { m_faceMatches.push_back(value); return *this; }
/**
* <p>An array of faces in the target image that match the source image face. Each
* <code>CompareFacesMatch</code> object provides the bounding box, the confidence
* level that the bounding box contains a face, and the similarity score for the
* face in the bounding box and the face in the source image.</p>
*/
inline CompareFacesResult& AddFaceMatches(CompareFacesMatch&& value) { m_faceMatches.push_back(std::move(value)); return *this; }
/**
* <p>An array of faces in the target image that did not match the source image
* face.</p>
*/
inline const Aws::Vector<ComparedFace>& GetUnmatchedFaces() const{ return m_unmatchedFaces; }
/**
* <p>An array of faces in the target image that did not match the source image
* face.</p>
*/
inline void SetUnmatchedFaces(const Aws::Vector<ComparedFace>& value) { m_unmatchedFaces = value; }
/**
* <p>An array of faces in the target image that did not match the source image
* face.</p>
*/
inline void SetUnmatchedFaces(Aws::Vector<ComparedFace>&& value) { m_unmatchedFaces = std::move(value); }
/**
* <p>An array of faces in the target image that did not match the source image
* face.</p>
*/
inline CompareFacesResult& WithUnmatchedFaces(const Aws::Vector<ComparedFace>& value) { SetUnmatchedFaces(value); return *this;}
/**
* <p>An array of faces in the target image that did not match the source image
* face.</p>
*/
inline CompareFacesResult& WithUnmatchedFaces(Aws::Vector<ComparedFace>&& value) { SetUnmatchedFaces(std::move(value)); return *this;}
/**
* <p>An array of faces in the target image that did not match the source image
* face.</p>
*/
inline CompareFacesResult& AddUnmatchedFaces(const ComparedFace& value) { m_unmatchedFaces.push_back(value); return *this; }
/**
* <p>An array of faces in the target image that did not match the source image
* face.</p>
*/
inline CompareFacesResult& AddUnmatchedFaces(ComparedFace&& value) { m_unmatchedFaces.push_back(std::move(value)); return *this; }
/**
* <p>The value of <code>SourceImageOrientationCorrection</code> is always
* null.</p> <p>If the input image is in .jpeg format, it might contain
* exchangeable image file format (Exif) metadata that includes the image's
* orientation. Amazon Rekognition uses this orientation information to perform
* image correction. The bounding box coordinates are translated to represent
* object locations after the orientation information in the Exif metadata is used
* to correct the image orientation. Images in .png format don't contain Exif
* metadata.</p> <p>Amazon Rekognition doesnt perform image correction for images
* in .png format and .jpeg images without orientation information in the image
* Exif metadata. The bounding box coordinates aren't translated and represent the
* object locations before the image is rotated. </p>
*/
inline const OrientationCorrection& GetSourceImageOrientationCorrection() const{ return m_sourceImageOrientationCorrection; }
/**
* <p>The value of <code>SourceImageOrientationCorrection</code> is always
* null.</p> <p>If the input image is in .jpeg format, it might contain
* exchangeable image file format (Exif) metadata that includes the image's
* orientation. Amazon Rekognition uses this orientation information to perform
* image correction. The bounding box coordinates are translated to represent
* object locations after the orientation information in the Exif metadata is used
* to correct the image orientation. Images in .png format don't contain Exif
* metadata.</p> <p>Amazon Rekognition doesnt perform image correction for images
* in .png format and .jpeg images without orientation information in the image
* Exif metadata. The bounding box coordinates aren't translated and represent the
* object locations before the image is rotated. </p>
*/
inline void SetSourceImageOrientationCorrection(const OrientationCorrection& value) { m_sourceImageOrientationCorrection = value; }
/**
* <p>The value of <code>SourceImageOrientationCorrection</code> is always
* null.</p> <p>If the input image is in .jpeg format, it might contain
* exchangeable image file format (Exif) metadata that includes the image's
* orientation. Amazon Rekognition uses this orientation information to perform
* image correction. The bounding box coordinates are translated to represent
* object locations after the orientation information in the Exif metadata is used
* to correct the image orientation. Images in .png format don't contain Exif
* metadata.</p> <p>Amazon Rekognition doesnt perform image correction for images
* in .png format and .jpeg images without orientation information in the image
* Exif metadata. The bounding box coordinates aren't translated and represent the
* object locations before the image is rotated. </p>
*/
inline void SetSourceImageOrientationCorrection(OrientationCorrection&& value) { m_sourceImageOrientationCorrection = std::move(value); }
/**
* <p>The value of <code>SourceImageOrientationCorrection</code> is always
* null.</p> <p>If the input image is in .jpeg format, it might contain
* exchangeable image file format (Exif) metadata that includes the image's
* orientation. Amazon Rekognition uses this orientation information to perform
* image correction. The bounding box coordinates are translated to represent
* object locations after the orientation information in the Exif metadata is used
* to correct the image orientation. Images in .png format don't contain Exif
* metadata.</p> <p>Amazon Rekognition doesnt perform image correction for images
* in .png format and .jpeg images without orientation information in the image
* Exif metadata. The bounding box coordinates aren't translated and represent the
* object locations before the image is rotated. </p>
*/
inline CompareFacesResult& WithSourceImageOrientationCorrection(const OrientationCorrection& value) { SetSourceImageOrientationCorrection(value); return *this;}
/**
* <p>The value of <code>SourceImageOrientationCorrection</code> is always
* null.</p> <p>If the input image is in .jpeg format, it might contain
* exchangeable image file format (Exif) metadata that includes the image's
* orientation. Amazon Rekognition uses this orientation information to perform
* image correction. The bounding box coordinates are translated to represent
* object locations after the orientation information in the Exif metadata is used
* to correct the image orientation. Images in .png format don't contain Exif
* metadata.</p> <p>Amazon Rekognition doesnt perform image correction for images
* in .png format and .jpeg images without orientation information in the image
* Exif metadata. The bounding box coordinates aren't translated and represent the
* object locations before the image is rotated. </p>
*/
inline CompareFacesResult& WithSourceImageOrientationCorrection(OrientationCorrection&& value) { SetSourceImageOrientationCorrection(std::move(value)); return *this;}
/**
* <p>The value of <code>TargetImageOrientationCorrection</code> is always
* null.</p> <p>If the input image is in .jpeg format, it might contain
* exchangeable image file format (Exif) metadata that includes the image's
* orientation. Amazon Rekognition uses this orientation information to perform
* image correction. The bounding box coordinates are translated to represent
* object locations after the orientation information in the Exif metadata is used
* to correct the image orientation. Images in .png format don't contain Exif
* metadata.</p> <p>Amazon Rekognition doesnt perform image correction for images
* in .png format and .jpeg images without orientation information in the image
* Exif metadata. The bounding box coordinates aren't translated and represent the
* object locations before the image is rotated. </p>
*/
inline const OrientationCorrection& GetTargetImageOrientationCorrection() const{ return m_targetImageOrientationCorrection; }
/**
* <p>The value of <code>TargetImageOrientationCorrection</code> is always
* null.</p> <p>If the input image is in .jpeg format, it might contain
* exchangeable image file format (Exif) metadata that includes the image's
* orientation. Amazon Rekognition uses this orientation information to perform
* image correction. The bounding box coordinates are translated to represent
* object locations after the orientation information in the Exif metadata is used
* to correct the image orientation. Images in .png format don't contain Exif
* metadata.</p> <p>Amazon Rekognition doesnt perform image correction for images
* in .png format and .jpeg images without orientation information in the image
* Exif metadata. The bounding box coordinates aren't translated and represent the
* object locations before the image is rotated. </p>
*/
inline void SetTargetImageOrientationCorrection(const OrientationCorrection& value) { m_targetImageOrientationCorrection = value; }
/**
* <p>The value of <code>TargetImageOrientationCorrection</code> is always
* null.</p> <p>If the input image is in .jpeg format, it might contain
* exchangeable image file format (Exif) metadata that includes the image's
* orientation. Amazon Rekognition uses this orientation information to perform
* image correction. The bounding box coordinates are translated to represent
* object locations after the orientation information in the Exif metadata is used
* to correct the image orientation. Images in .png format don't contain Exif
* metadata.</p> <p>Amazon Rekognition doesnt perform image correction for images
* in .png format and .jpeg images without orientation information in the image
* Exif metadata. The bounding box coordinates aren't translated and represent the
* object locations before the image is rotated. </p>
*/
inline void SetTargetImageOrientationCorrection(OrientationCorrection&& value) { m_targetImageOrientationCorrection = std::move(value); }
/**
* <p>The value of <code>TargetImageOrientationCorrection</code> is always
* null.</p> <p>If the input image is in .jpeg format, it might contain
* exchangeable image file format (Exif) metadata that includes the image's
* orientation. Amazon Rekognition uses this orientation information to perform
* image correction. The bounding box coordinates are translated to represent
* object locations after the orientation information in the Exif metadata is used
* to correct the image orientation. Images in .png format don't contain Exif
* metadata.</p> <p>Amazon Rekognition doesnt perform image correction for images
* in .png format and .jpeg images without orientation information in the image
* Exif metadata. The bounding box coordinates aren't translated and represent the
* object locations before the image is rotated. </p>
*/
inline CompareFacesResult& WithTargetImageOrientationCorrection(const OrientationCorrection& value) { SetTargetImageOrientationCorrection(value); return *this;}
/**
* <p>The value of <code>TargetImageOrientationCorrection</code> is always
* null.</p> <p>If the input image is in .jpeg format, it might contain
* exchangeable image file format (Exif) metadata that includes the image's
* orientation. Amazon Rekognition uses this orientation information to perform
* image correction. The bounding box coordinates are translated to represent
* object locations after the orientation information in the Exif metadata is used
* to correct the image orientation. Images in .png format don't contain Exif
* metadata.</p> <p>Amazon Rekognition doesnt perform image correction for images
* in .png format and .jpeg images without orientation information in the image
* Exif metadata. The bounding box coordinates aren't translated and represent the
* object locations before the image is rotated. </p>
*/
inline CompareFacesResult& WithTargetImageOrientationCorrection(OrientationCorrection&& value) { SetTargetImageOrientationCorrection(std::move(value)); return *this;}
private:
ComparedSourceImageFace m_sourceImageFace;
Aws::Vector<CompareFacesMatch> m_faceMatches;
Aws::Vector<ComparedFace> m_unmatchedFaces;
OrientationCorrection m_sourceImageOrientationCorrection;
OrientationCorrection m_targetImageOrientationCorrection;
};
} // namespace Model
} // namespace Rekognition
} // namespace Aws