-
-
Notifications
You must be signed in to change notification settings - Fork 175
Description
Hello, I have a question. Is there an indentation problem on line 311 of the sort.py file in your project code? Here is the code from line 288 to 311:
if name == 'main':
all train
args = parse_args()
display = args.display
phase = args.phase
total_time = 0.0
total_frames = 0
colours = np.random.rand(32, 3) #used only for display
if(display):
if not os.path.exists('mot_benchmark'):
print('\n\tERROR: mot_benchmark link not found!\n\n Create a symbolic link to the MOT benchmark\n (https://motchallenge.net/data/2D_MOT_2015/#download). E.g.:\n\n $ ln -s /path/to/MOT2015_challenge/2DMOT2015 mot_benchmark\n\n')
exit()
plt.ion()
fig = plt.figure()
ax1 = fig.add_subplot(111, aspect='equal')
if not os.path.exists('output'):
os.makedirs('output')
pattern = os.path.join(args.seq_path, phase, '*', 'det', 'det.txt')
for seq_dets_fn in glob.glob(pattern):
mot_tracker = Sort(max_age=args.max_age,
min_hits=args.min_hits,
iou_threshold=args.iou_threshold) #create instance of the SORT tracker
seq_dets = np.loadtxt(seq_dets_fn, delimiter=',')
As you can see, the parameter seq_dets_fn first appears in the for loop, but the line seq_dets = np.loadtxt(seq_dets_fn, delimiter=',') is not inside the loop. Therefore, an error will occur indicating that seq_dets_fn is undefined. Is this an indentation problem? I hope you can answer. Thank you very much!