42 lines
788 B
Python
42 lines
788 B
Python
"""
|
|
Lemontropia Suite - Modules
|
|
Game automation and analysis modules.
|
|
"""
|
|
|
|
# OCR and Vision
|
|
from .game_vision_ai import GameVisionAI, UnifiedOCRProcessor
|
|
from .hardware_detection import (
|
|
HardwareDetector,
|
|
HardwareInfo,
|
|
GPUBackend,
|
|
get_hardware_info,
|
|
print_hardware_summary,
|
|
recommend_ocr_backend,
|
|
)
|
|
|
|
# OCR Backends
|
|
from .ocr_backends import (
|
|
BaseOCRBackend,
|
|
OCRTextRegion,
|
|
OCRBackendInfo,
|
|
OCRBackendFactory,
|
|
)
|
|
|
|
__all__ = [
|
|
# Vision
|
|
'GameVisionAI',
|
|
'UnifiedOCRProcessor',
|
|
# Hardware
|
|
'HardwareDetector',
|
|
'HardwareInfo',
|
|
'GPUBackend',
|
|
'get_hardware_info',
|
|
'print_hardware_summary',
|
|
'recommend_ocr_backend',
|
|
# OCR
|
|
'BaseOCRBackend',
|
|
'OCRTextRegion',
|
|
'OCRBackendInfo',
|
|
'OCRBackendFactory',
|
|
]
|