RapidOCRBlobParser#
- class langchain_community.document_loaders.parsers.images.RapidOCRBlobParser[source]#
Parser for extracting text from images using the RapidOCR library.
- ocr#
The RapidOCR instance for performing OCR.
Initializes the RapidOCRBlobParser.
Methods
__init__
()Initializes the RapidOCRBlobParser.
lazy_parse
(blob)Lazily parse a blob and yields Documents containing the parsed content.
parse
(blob)Eagerly parse the blob into a document or documents.
- lazy_parse(blob: Blob) Iterator[Document] #
Lazily parse a blob and yields Documents containing the parsed content.