Spaces:
Sleeping
Sleeping
| """Detection modules for per-frame analysis during video scanning. | |
| This package contains components that process individual video frames to detect: | |
| - Scorebug presence and location | |
| - Timeout indicator states | |
| """ | |
| from .models import ( | |
| ScorebugDetection, | |
| TimeoutRegionConfig, | |
| TimeoutReading, | |
| ) | |
| from .scorebug import DetectScoreBug | |
| from .timeouts import DetectTimeouts | |
| __all__ = [ | |
| # Models | |
| "ScorebugDetection", | |
| "TimeoutRegionConfig", | |
| "TimeoutReading", | |
| # Scorebug detection | |
| "DetectScoreBug", | |
| # Timeout tracking | |
| "DetectTimeouts", | |
| ] | |