llm_ticket3/utils/ocr_brut/__init__.py
2025-05-07 17:12:50 +02:00

11 lines
371 B
Python

from utils.ocr_brut.ocr_utils import extraire_texte, extraire_texte_fr
from utils.ocr_brut.ocr_preprocessor import preprocess_image, preprocess_image_with_profile, PREPROCESSING_PROFILES
# Compatibilité rétroactive
__all__ = [
'extraire_texte',
'extraire_texte_fr',
'preprocess_image',
'preprocess_image_with_profile',
'PREPROCESSING_PROFILES'
]