mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
14 lines
262 B
Python
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
|