Class: Aws::Rekognition::Types::StartTextDetectionFilters

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

Overview

Set of optional parameters that let you set the criteria 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 screen to look for text in.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#regions_of_interestArray<Types::RegionOfInterest>

Filter focusing on a certain area of the frame. Uses a BoundingBox object to set the region of the screen.

Returns:



7439
7440
7441
7442
7443
7444
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 7439

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

#word_filterTypes::DetectionFilter

Filters focusing on qualities of the text, such as confidence or size.



7439
7440
7441
7442
7443
7444
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 7439

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