Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfigOcrParsingConfig
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfigOcrParsingConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
The OCR parsing configurations for documents.
Instance Attribute Summary collapse
-
#enhanced_document_elements ⇒ Array<String>
Apply additional enhanced OCR processing to a list of document elements.
-
#use_native_text ⇒ Boolean
(also: #use_native_text?)
If true, will use native text instead of OCR text on pages containing native text.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfigOcrParsingConfig
constructor
A new instance of GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfigOcrParsingConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfigOcrParsingConfig
Returns a new instance of GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfigOcrParsingConfig.
757 758 759 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 757 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enhanced_document_elements ⇒ Array<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
748 749 750 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 748 def enhanced_document_elements @enhanced_document_elements end |
#use_native_text ⇒ Boolean 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
754 755 756 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 754 def use_native_text @use_native_text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
762 763 764 765 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 762 def update!(**args) @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 |