sbt-idp/cope2n-ai-fi/common/utils_invoice/run_ocr.py

13 lines
331 B
Python
Raw Normal View History

2023-11-30 11:22:16 +00:00
from ..utils.ocr_yolox import OcrEngineForYoloX_Invoice
det_ckpt = "yolox-s-general-text-pretrain-20221226"
cls_ckpt = "satrn-lite-general-pretrain-20230106"
ocr_engine = OcrEngineForYoloX_Invoice(det_ckpt, cls_ckpt)
def ocr_predict(image_url):
bboxes, texts = ocr_engine.run_image(image_url)
return bboxes, texts