/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies a location within the frame that Rekognition checks for text. Uses
* a A word
* is included in the region if the word is more than half in that region. If there
* is more than one region, the word will be compared with all regions of the
* screen. Any word more than half in a region is kept in the
* results.BoundingBox object to set a region of the screen.See Also:
AWS
* API Reference
The box representing a region of interest on screen.
*/ inline const BoundingBox& GetBoundingBox() const{ return m_boundingBox; } /** *The box representing a region of interest on screen.
*/ inline bool BoundingBoxHasBeenSet() const { return m_boundingBoxHasBeenSet; } /** *The box representing a region of interest on screen.
*/ inline void SetBoundingBox(const BoundingBox& value) { m_boundingBoxHasBeenSet = true; m_boundingBox = value; } /** *The box representing a region of interest on screen.
*/ inline void SetBoundingBox(BoundingBox&& value) { m_boundingBoxHasBeenSet = true; m_boundingBox = std::move(value); } /** *The box representing a region of interest on screen.
*/ inline RegionOfInterest& WithBoundingBox(const BoundingBox& value) { SetBoundingBox(value); return *this;} /** *The box representing a region of interest on screen.
*/ inline RegionOfInterest& WithBoundingBox(BoundingBox&& value) { SetBoundingBox(std::move(value)); return *this;} private: BoundingBox m_boundingBox; bool m_boundingBoxHasBeenSet; }; } // namespace Model } // namespace Rekognition } // namespace Aws