1
0
mirror of https://github.com/blakeblackshear/frigate.git synced 2025-03-04 00:17:22 +01:00
blakeblackshear.frigate/frigate/track/__init__.py

14 lines
262 B
Python
Raw Normal View History

2023-05-31 16:12:43 +02:00
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