blakeblackshear.frigate/frigate/track/__init__.py
2023-05-31 08:12:43 -06:00

14 lines
262 B
Python

from abc import ABC, abstractmethod
from frigate.config import DetectConfig
class ObjectTracker(ABC):
@abstractmethod
def __init__(self, config: DetectConfig):
pass
@abstractmethod
def match_and_update(self, detections):
pass