Class: Aws::Rekognition::Types::DetectTextFilters

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb

Overview

A set of optional parameters that you can use to set the criteria that the text must meet to be included in your response. WordFilter looks at a word’s height, width, and minimum confidence. RegionOfInterest lets you set a specific region of the image to look for text in.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#regions_of_interestArray<Types::RegionOfInterest>

A Filter focusing on a certain area of the image. Uses a BoundingBox object to set the region of the image.

Returns:



2493
2494
2495
2496
2497
2498
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2493

class DetectTextFilters < Struct.new(
  :word_filter,
  :regions_of_interest)
  SENSITIVE = []
  include Aws::Structure
end

#word_filterTypes::DetectionFilter

A set of parameters that allow you to filter out certain results from your returned results.



2493
2494
2495
2496
2497
2498
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2493

class DetectTextFilters < Struct.new(
  :word_filter,
  :regions_of_interest)
  SENSITIVE = []
  include Aws::Structure
end