stockforge-ocr / ocr /__init__.py
gagan0716's picture
Upload folder using huggingface_hub
a67c2e8 verified
Raw
History Blame Contribute Delete
695 Bytes
"""
InvoiceForge AI — OCR Engine Package
Provides PaddleOCR, TrOCR, and EasyOCR engines plus image preprocessing.
"""
from .preprocessing import (
preprocess_printed,
preprocess_handwritten,
preprocess_mobile,
preprocess_thermal,
detect_blur,
score_image_quality,
auto_select_pipeline,
)
from .paddle_engine import PaddleEngine
from .trocr_engine import TrOCREngine
from .easyocr_engine import EasyOCREngine
__all__ = [
"preprocess_printed",
"preprocess_handwritten",
"preprocess_mobile",
"preprocess_thermal",
"detect_blur",
"score_image_quality",
"auto_select_pipeline",
"PaddleEngine",
"TrOCREngine",
"EasyOCREngine",
]