EAST-based OCR detector API
Project description
Installation
pip install manuscript-ocr
Usage Example
from PIL import Image
from manuscript.detectors import EASTInfer
# Инициализация
det = EASTInfer(score_thresh=0.9)
# Инфер с визуализацией
page, vis_image = det.infer(r"example\ocr_example_image.jpg", vis=True)
print(page)
# Покажет картинку с наложенными боксами
Image.fromarray(vis_image).show()
# Или сохранить результат на диск:
Image.fromarray(vis_image).save(r"example\ocr_example_image_infer.png")
Результат
Текстовые блоки будут выведены в консоль, например:
Page(blocks=[Block(words=[Word(polygon=[(874.1005, 909.1005), (966.8995, 909.1005), (966.8995, 956.8995), (874.1005, 956.8995)]),
Word(polygon=[(849.1234, 810.5678), … ])])])
А визуализация сохранится в файл example/ocr_example_image_infer.png:
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
manuscript_ocr-0.1.3.tar.gz
(17.1 kB
view details)
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 manuscript_ocr-0.1.3.tar.gz.
File metadata
- Download URL: manuscript_ocr-0.1.3.tar.gz
- Upload date:
- Size: 17.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25610dfd25e302d445ef63c65d8a41474226b907ba04d5b8c71ea95611d143a6
|
|
| MD5 |
2ed95ef11bbaf1b093ff1bc3587bc842
|
|
| BLAKE2b-256 |
a9aa80b61f0ea9b76fa466bbb2c54777a8de545eb53fe3d75b8cb342a0b02a33
|
File details
Details for the file manuscript_ocr-0.1.3-py3-none-any.whl.
File metadata
- Download URL: manuscript_ocr-0.1.3-py3-none-any.whl
- Upload date:
- Size: 18.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb15c6957c0d755f19a8033bd77199d0e6109a5e08cf1e11611c56d350499cb4
|
|
| MD5 |
3c44cc99827dc88f87729821d54771ec
|
|
| BLAKE2b-256 |
61d580bd410a7089a963b18b39c906fb6147db671d943c398ef9d7c694f45e79
|