You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I run python gmtracker_app.py --sequence_dir data/MOT17/test/MOT17-01 --detection_file npy/npytest_tracktor/MOT17-01-DPM.npy --checkpoint_dir experiments/static/params/0001 --max_age 100 --reid_thr 0.6 --output_file results/test/MOT17-01-DPM.txt
I got error like this:
torch.Size([2171, 512])
Loading model parameters from experiments/static/params/0001\params.pt
torch.Size([2171, 512])
(2171, 522)
Processing MOT17-01 frame 00001
Nothing to match at this level
Processing MOT17-01 frame 00002
Nothing to match at this level
Processing MOT17-01 frame 00003
Nothing to match at this level
Processing MOT17-01 frame 00004
Nothing to match at this level
Processing MOT17-01 frame 00005
Nothing to match at this level
Processing MOT17-01 frame 00006
Nothing to match at this level
Traceback (most recent call last):
File "gmtracker_app.py", line 321, in
args.max_age, args.n_init, args.reid_thr, args.checkpoint_dir)
File "gmtracker_app.py", line 262, in run
frame_callback(frame_idx)
File "gmtracker_app.py", line 249, in frame_callback
tracker.update(detections, seq_info["sequence_name"], frame_idx, checkpoint_dir)
File "E:\lunwendaima\GMTracker\utils\tracker.py", line 122, in update
self._match(detections,video,frame,checkpoint_dir)
File "E:\lunwendaima\GMTracker\utils\tracker.py", line 165, in _match
detections, iou_track_candidates, unmatched_detections)
File "E:\lunwendaima\GMTracker\GMMOT\assignment.py", line 52, in min_cost_matching
detection_idx = detection_indices[col]
IndexError: list index out of range
Do you know how to deal with it?
The text was updated successfully, but these errors were encountered:
when I run python gmtracker_app.py --sequence_dir data/MOT17/test/MOT17-01 --detection_file npy/npytest_tracktor/MOT17-01-DPM.npy --checkpoint_dir experiments/static/params/0001 --max_age 100 --reid_thr 0.6 --output_file results/test/MOT17-01-DPM.txt
I got error like this:
torch.Size([2171, 512])
Loading model parameters from experiments/static/params/0001\params.pt
torch.Size([2171, 512])
(2171, 522)
Processing MOT17-01 frame 00001
Nothing to match at this level
Processing MOT17-01 frame 00002
Nothing to match at this level
Processing MOT17-01 frame 00003
Nothing to match at this level
Processing MOT17-01 frame 00004
Nothing to match at this level
Processing MOT17-01 frame 00005
Nothing to match at this level
Processing MOT17-01 frame 00006
Nothing to match at this level
Traceback (most recent call last):
File "gmtracker_app.py", line 321, in
args.max_age, args.n_init, args.reid_thr, args.checkpoint_dir)
File "gmtracker_app.py", line 262, in run
frame_callback(frame_idx)
File "gmtracker_app.py", line 249, in frame_callback
tracker.update(detections, seq_info["sequence_name"], frame_idx, checkpoint_dir)
File "E:\lunwendaima\GMTracker\utils\tracker.py", line 122, in update
self._match(detections,video,frame,checkpoint_dir)
File "E:\lunwendaima\GMTracker\utils\tracker.py", line 165, in _match
detections, iou_track_candidates, unmatched_detections)
File "E:\lunwendaima\GMTracker\GMMOT\assignment.py", line 52, in min_cost_matching
detection_idx = detection_indices[col]
IndexError: list index out of range
Do you know how to deal with it?
The text was updated successfully, but these errors were encountered: