PiSAR / pipeline /trackers /dummytrack.py
eadali's picture
Remove python related files
37165e0
raw
history blame contribute delete
194 Bytes
class DummyTrack:
def __init__(self, *args, **kwargs):
pass
def __call__(self, detections, *args, **kwargs):
# Just return the detections as-is
return detections