File size: 574 Bytes
6c65498
 
 
 
 
 
 
 
 
 
 
 
47d79b8
21c8945
6c65498
 
 
 
 
 
 
 
 
21c8945
6c65498
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"""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",
]