Module: Xberg::_OcrBackend
- Defined in:
- sig/types.rbs
Instance Method Summary collapse
- #backend_type ⇒ OcrBackendType
- #emits_structured_markdown ⇒ Boolean
- #process_document ⇒ ExtractedDocument
- #process_image ⇒ ExtractedDocument
- #process_image_file ⇒ ExtractedDocument
- #supported_languages ⇒ Array[String]
- #supports_document_processing ⇒ Boolean
- #supports_language ⇒ Boolean
- #supports_table_detection ⇒ Boolean
Instance Method Details
#backend_type ⇒ OcrBackendType
2476 |
# File 'sig/types.rbs', line 2476
def backend_type: () -> OcrBackendType
|
#emits_structured_markdown ⇒ Boolean
2480 |
# File 'sig/types.rbs', line 2480
def emits_structured_markdown: () -> bool
|
#process_document ⇒ ExtractedDocument
2481 |
# File 'sig/types.rbs', line 2481
def process_document: (String _path, OcrConfig _config) -> ExtractedDocument
|
#process_image ⇒ ExtractedDocument
2473 |
# File 'sig/types.rbs', line 2473
def process_image: (String image_bytes, OcrConfig config) -> ExtractedDocument
|
#process_image_file ⇒ ExtractedDocument
2474 |
# File 'sig/types.rbs', line 2474
def process_image_file: (String path, OcrConfig config) -> ExtractedDocument
|
#supported_languages ⇒ Array[String]
2477 |
# File 'sig/types.rbs', line 2477
def supported_languages: () -> Array[String]
|
#supports_document_processing ⇒ Boolean
2479 |
# File 'sig/types.rbs', line 2479
def supports_document_processing: () -> bool
|
#supports_language ⇒ Boolean
2475 |
# File 'sig/types.rbs', line 2475
def supports_language: (String lang) -> bool
|
#supports_table_detection ⇒ Boolean
2478 |
# File 'sig/types.rbs', line 2478
def supports_table_detection: () -> bool
|