SYMBOL INDEX (20 symbols across 5 files) FILE: fast_alpr/alpr.py class ALPRResult (line 26) | class ALPRResult: class DrawPredictionsResult (line 40) | class DrawPredictionsResult: class ALPR (line 53) | class ALPR: method __init__ (line 60) | def __init__( method predict (line 119) | def predict(self, frame: np.ndarray | str) -> list[ALPRResult]: method draw_predictions (line 149) | def draw_predictions(self, frame: np.ndarray | str) -> DrawPredictions... FILE: fast_alpr/base.py class OcrResult (line 13) | class OcrResult: class BaseDetector (line 30) | class BaseDetector(ABC): method predict (line 32) | def predict(self, frame: np.ndarray) -> list[DetectionResult]: class BaseOCR (line 36) | class BaseOCR(ABC): method predict (line 38) | def predict(self, cropped_plate: np.ndarray) -> OcrResult | None: FILE: fast_alpr/default_detector.py class DefaultDetector (line 15) | class DefaultDetector(BaseDetector): method __init__ (line 23) | def __init__( method predict (line 50) | def predict(self, frame: np.ndarray) -> list[DetectionResult]: FILE: fast_alpr/default_ocr.py class DefaultOCR (line 18) | class DefaultOCR(BaseOCR): method __init__ (line 23) | def __init__( method predict (line 62) | def predict(self, cropped_plate: np.ndarray) -> OcrResult | None: FILE: test/test_alpr.py function alpr_fixture (line 19) | def alpr_fixture() -> ALPR: function test_default_alpr (line 41) | def test_default_alpr( function test_draw_predictions (line 82) | def test_draw_predictions(img_path: Path, alpr: ALPR) -> None: