Extrair textos de documentos digitalizados e imagens.
Project description
ocrlib
Uso simples
from ocr_stream import File, TextRecognized, RecognizeImage, RecognizePdf
passo 1:
instânciar o objeto para reconhecer texto, utilizando o caminho do tesseract
tess: File = File('/usr/bin/tesseract') # Substitua pelo tesseract do seu sistema ocr = RecognizeImage.create(path_tesseract=tess)
passo 2:
instânciar um arquivo de imagem para extrair o texto.
image: File = File('path/to/file.png')
passo 3:
extrair o texto
text: str = ocr.image_to_string(image) print(text)
passo 4 opcional:
você pode salvar um arquivo PDF com o texto extraido
output_file: File = File('path/to/save.pdf') recognized: TextRecognized = ocr.image_recognize(image) recognized.to_document().to_file_pdf(output_file)
passo 5 opcional:
você pode salvar uma planilha com o texto da imagem
output_excel: File = File('path/to/file.xlsx') recognized: TextRecognized = ocr.image_recognize(image) recognized.to_document().to_excel(output_excel)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ocr_stream-2.5.1.tar.gz.
File metadata
- Download URL: ocr_stream-2.5.1.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f43de11a00f92112d5bbd01a7b675676a0fed8dcb6ea2fbbdaecc7a9b55d9471
|
|
| MD5 |
bcbd9cd7835097e3a48a4fa852a44989
|
|
| BLAKE2b-256 |
d27c7db336fdcb6c98c31ae095e6c4fed779f567477ff8a69fcff2062e9a0273
|
File details
Details for the file ocr_stream-2.5.1-py3-none-any.whl.
File metadata
- Download URL: ocr_stream-2.5.1-py3-none-any.whl
- Upload date:
- Size: 10.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
758cda0fb5f7f5185e418120c2eb5596f453eb4e2dc5d9dd7bffdcb319e39fc5
|
|
| MD5 |
4e5decc043f2f1c6449a9c2e2bb91c9c
|
|
| BLAKE2b-256 |
8b699b125745853ea9a10a3a48fe663791cc43c315a777967a735041f41a0cb6
|