UCMCTrack
UCMCTrack copied to clipboard
Why the dets before and after tracker.update are same?
dets = detector.get_dets(frame_img,args.conf_thresh,class_list) print("Before", dets) tracker.update(dets,frame_id) print("After", dets)
I found that the dets before and after tracker.update are actually same. Is it really updated?