Hi @KaranSingh
The depthai trackers are not very configurable yet. You should be able to integrate BYTETracker if that fulfills your needs.
From BYTETracker repo readme:
from yolox.tracker.byte_tracker import BYTETracker
tracker = BYTETracker(args)
for image in images:
dets = detector(image)
online_targets = tracker.update(dets, info_imgs, img_size)
The detector (Yolo Node) should return detections (bbox, confidence, class), which you can easily input into BYTETracker. Detections have to be sent to host side since the VPU does not support external tracking solutions.
Thanks,
Jaka