frigate/frigate/detection/object_detector.py

8 lines
149 B
Python

from abc import ABC, abstractmethod
class ObjectDetector(ABC):
@abstractmethod
def detect(self, tensor_input, threshold=0.4):
pass