利用 onnxruntime 及 PaddleOCR 提供的模型, 对图片中的文字进行检测与识别.
Project description
PPOCR-ONNX
简介
利用 onnxruntime 及 PaddleOCR 提供的模型, 对图片中的文字进行检测与识别.
使用模型
- 文字检测:
ch_PP-OCRv3_det_infer
- 方向分类:
cls mobile v2
- 文字识别:
ch_PP-OCRv2_rec_infer
参考
- PaddleOCR
- 手把手教你使用ONNXRunTime部署PP-OCR
ch_PP-OCRv3_det_infer
及ch_PP-OCRv2_rec_infer
模型来自 RapidAI/RapidOCR
安装
pip install ppocr-onnx
使用
from ppocronnx.predict_system import TextSystem
import cv2
text_sys = TextSystem()
# 识别单行文本
res = text_sys.ocr_single_line(cv2.imread('single_line_text.png'))
print(res)
# 批量识别单行文本
res = text_sys.ocr_lines([cv2.imread('single_line_text.png')])
print(res[0])
# 检测并识别文本
img = cv2.imread('test.png')
res = text_sys.detect_and_ocr(img)
for boxed_result in res:
print("{}, {:.3f}".format(boxed_result.ocr_text, boxed_result.score))
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
ppocr-onnx-0.0.3.9.tar.gz
(10.5 MB
view details)
Built Distribution
File details
Details for the file ppocr-onnx-0.0.3.9.tar.gz
.
File metadata
- Download URL: ppocr-onnx-0.0.3.9.tar.gz
- Upload date:
- Size: 10.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7148c6a035e01a8e0a37389ac68dd59c1271e799c52348051319dfd0a076359d |
|
MD5 | 4e5a097862795d3ed5633b58b8de0228 |
|
BLAKE2b-256 | ccdc445da1216d93dbc24b558325dc23e0d063a09df393fff9e4689f77605302 |
File details
Details for the file ppocr_onnx-0.0.3.9-py3-none-any.whl
.
File metadata
- Download URL: ppocr_onnx-0.0.3.9-py3-none-any.whl
- Upload date:
- Size: 10.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5c5d89e94b847b31bcacbc07a54cb5cb11eda719b32f5e66a32cd2a7dfd75f0 |
|
MD5 | df41ff300e63b20385d802e3ee901366 |
|
BLAKE2b-256 | e5761198f531939532509ff6616b44eda6d3b913f305ff8868eb14406268b484 |