Page¶
-
class
oci.ai_vision.models.
Page
(**kwargs)¶ Bases:
object
One page document analysis result.
Methods
__init__
(**kwargs)Initializes a new Page object with values from keyword arguments. Attributes
detected_document_types
Gets the detected_document_types of this Page. detected_languages
Gets the detected_languages of this Page. dimensions
Gets the dimensions of this Page. document_fields
Gets the document_fields of this Page. lines
Gets the lines of this Page. page_number
[Required] Gets the page_number of this Page. tables
Gets the tables of this Page. words
Gets the words of this Page. -
__init__
(**kwargs)¶ Initializes a new Page object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - page_number (int) – The value to assign to the page_number property of this Page.
- dimensions (oci.ai_vision.models.Dimensions) – The value to assign to the dimensions property of this Page.
- detected_document_types (list[oci.ai_vision.models.DetectedDocumentType]) – The value to assign to the detected_document_types property of this Page.
- detected_languages (list[oci.ai_vision.models.DetectedLanguage]) – The value to assign to the detected_languages property of this Page.
- words (list[oci.ai_vision.models.Word]) – The value to assign to the words property of this Page.
- lines (list[oci.ai_vision.models.Line]) – The value to assign to the lines property of this Page.
- tables (list[oci.ai_vision.models.Table]) – The value to assign to the tables property of this Page.
- document_fields (list[oci.ai_vision.models.DocumentField]) – The value to assign to the document_fields property of this Page.
-
detected_document_types
¶ Gets the detected_document_types of this Page. An array of detected document types.
Returns: The detected_document_types of this Page. Return type: list[oci.ai_vision.models.DetectedDocumentType]
-
detected_languages
¶ Gets the detected_languages of this Page. An array of detected languages.
Returns: The detected_languages of this Page. Return type: list[oci.ai_vision.models.DetectedLanguage]
-
dimensions
¶ Gets the dimensions of this Page.
Returns: The dimensions of this Page. Return type: oci.ai_vision.models.Dimensions
-
document_fields
¶ Gets the document_fields of this Page. The form fields detected on the page.
Returns: The document_fields of this Page. Return type: list[oci.ai_vision.models.DocumentField]
-
lines
¶ Gets the lines of this Page. The lines of text detected on the page.
Returns: The lines of this Page. Return type: list[oci.ai_vision.models.Line]
-
page_number
¶ [Required] Gets the page_number of this Page. The document page number.
Returns: The page_number of this Page. Return type: int
-
tables
¶ Gets the tables of this Page. The tables detected on the page.
Returns: The tables of this Page. Return type: list[oci.ai_vision.models.Table]
-
words
¶ Gets the words of this Page. The words detected on the page.
Returns: The words of this Page. Return type: list[oci.ai_vision.models.Word]
-