Closed PranvQT closed 2 years ago
@PranvQT how did you solve this issue?
I tuned the hyper-parameters and that helped..I don't remember exactly which one but there are about 5-6 parameters try changing them ..that should help
@PranvQT how did you solve this issue?
@PranvQT - can you please paste the numbers you're using right now for those hyper-params?
I have a detector which works quite well for the videos that I have.
I am passing these detection to the BYTEtracker as mentioned here in the readme "Combining BYTE with other detectors" section.
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 detection scores are in the range of 0.8 to 0.95 but still when the human in the video moves , the tracker looses the track and assigns new id to that person.
Can you please tell me what I can do to stop this?