Files
IDcardsGenerator/src/model/YOLO_processor/__init__.py

7 lines
159 B
Python
Raw Normal View History

2025-08-05 19:09:55 +07:00
"""
2025-08-05 20:21:47 +07:00
Model module for Roboflow-based ID card detection and cropping
2025-08-05 19:09:55 +07:00
"""
2025-08-05 20:21:47 +07:00
from .roboflow_id_detector import RoboflowIDDetector
2025-08-05 19:09:55 +07:00
2025-08-05 20:21:47 +07:00
__all__ = ['RoboflowIDDetector']