Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaOcrConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb

Overview

The OCR options for parsing documents.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaOcrConfig

Returns a new instance of GoogleCloudDiscoveryengineV1alphaOcrConfig.



4246
4247
4248
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4246

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#enabledBoolean Also known as: enabled?

Required. If OCR is enabled or not. OCR must be enabled for other OcrConfig options to apply. We will only perform OCR on the first 80 pages of the PDF files. Corresponds to the JSON property enabled

Returns:

  • (Boolean)


4230
4231
4232
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4230

def enabled
  @enabled
end

#enhanced_document_elementsArray<String>

Apply additional enhanced OCR processing to a list of document elements. Supported values: * table: advanced table parsing model. Corresponds to the JSON property enhancedDocumentElements

Returns:

  • (Array<String>)


4237
4238
4239
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4237

def enhanced_document_elements
  @enhanced_document_elements
end

#use_native_textBoolean Also known as: use_native_text?

If true, will use native text instead of OCR text on pages containing native text. Corresponds to the JSON property useNativeText

Returns:

  • (Boolean)


4243
4244
4245
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4243

def use_native_text
  @use_native_text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4251
4252
4253
4254
4255
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4251

def update!(**args)
  @enabled = args[:enabled] if args.key?(:enabled)
  @enhanced_document_elements = args[:enhanced_document_elements] if args.key?(:enhanced_document_elements)
  @use_native_text = args[:use_native_text] if args.key?(:use_native_text)
end