mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-02-09 00:17:00 +01:00
14 lines
297 B
Python
14 lines
297 B
Python
from abc import ABC, abstractmethod
|
|
|
|
from frigate.config import DetectConfig
|
|
|
|
|
|
class ObjectTracker(ABC):
|
|
@abstractmethod
|
|
def __init__(self, config: DetectConfig) -> None:
|
|
pass
|
|
|
|
@abstractmethod
|
|
def match_and_update(self, frame_time: float, detections) -> None:
|
|
pass
|