File size: 530 Bytes
d520909
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
OCR Module for Document Intelligence

Provides OCR capabilities using PaddleOCR (primary) and Tesseract (fallback).
Supports multiple languages and confidence scoring.
"""

from .base import OCREngine, OCRConfig, OCRResult
from .paddle_ocr import PaddleOCREngine
from .tesseract_ocr import TesseractOCREngine
from .factory import get_ocr_engine, create_ocr_engine

__all__ = [
    "OCREngine",
    "OCRConfig",
    "OCRResult",
    "PaddleOCREngine",
    "TesseractOCREngine",
    "get_ocr_engine",
    "create_ocr_engine",
]