DocumentReader.readDocument Method¶
Module: DocumentReader
Definition¶
Reads all the fields in a document.
read_document(self, image: DocumentImage, document_name: str) -> TextFieldList
Parameters
image
DocumentImagein The image that contains the document. Must be a realigned BGR image of the document.document_name
strin The name of the document to be searched. Must be a key loaded in DocumentLibrary.
Returns
A list of all the text fields read in the document.
Exceptions
An error has occurred during Document Library execution.
TextFieldList readDocument(DocumentImage image, String? documentName)
Parameters
image
DocumentImagein The image that contains the document. Must be a realigned BGR image of the document.documentName
Stringin The name of the document to be searched. Must be a key loaded in DocumentLibrary.
Returns
A list of all the text fields read in the document.
Exceptions
An error has occurred during Document Library execution.
public TextFieldList ReadDocument(DocumentImage image, string documentName)
Parameters
image
DocumentImagein The image that contains the document. Must be a realigned BGR image of the document.documentName
stringin The name of the document to be searched. Must be a key loaded in DocumentLibrary.
Returns
A list of all the text fields read in the document.
Exceptions
An error has occurred during Document Library execution.
public TextFieldList readDocument(DocumentImage image, String documentName) throws DocumentException
Parameters
image
DocumentImagein The image that contains the document. Must be a realigned BGR image of the document.documentName
Stringin The name of the document to be searched. Must be a key loaded in DocumentLibrary.
Returns
A list of all the text fields read in the document.
Exceptions
An error has occurred during Document Library execution.
public func readDocument(image: DocumentImage, documentName: String) throws -> TextFieldList
Parameters
image
DocumentImagein The image that contains the document. Must be a realigned BGR image of the document.documentName
Stringin The name of the document to be searched. Must be a key loaded in DocumentLibrary.
Returns
A list of all the text fields read in the document.
Exceptions
An error has occurred during Document Library execution.
int id3DocumentReader_ReadDocument (
ID3_DOCUMENT_READER hDocumentReader,
ID3_DOCUMENT_IMAGE hImage,
const char * documentName,
ID3_DOCUMENT_TEXT_FIELD_LIST hReadTexts)
Parameters
hDocumentReader
ID3_DOCUMENT_READERin Handle to the DocumentReader object.hImage
ID3_DOCUMENT_IMAGEin The image that contains the document. Must be a realigned BGR image of the document.documentName
const char *in The name of the document to be searched. Must be a key loaded in DocumentLibrary.hReadTexts
ID3_DOCUMENT_TEXT_FIELD_LISTout A list of all the text fields read in the document.
Returns