16 lines
345 B
Python
16 lines
345 B
Python
from __future__ import annotations
|
|
|
|
import numpy as np
|
|
|
|
from app.ocr.base import OcrResult
|
|
|
|
|
|
class NoOcrEngine:
|
|
name = "none"
|
|
|
|
def __init__(self, config: dict) -> None:
|
|
self.config = config
|
|
|
|
def read_label(self, frame_bgr: np.ndarray, bbox: tuple[int, int, int, int]) -> OcrResult:
|
|
return OcrResult(engine=self.name)
|