Skip to content

Commit 261e62a

Browse files
committed
fix spelling problem
1 parent c292bde commit 261e62a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tracker/track_yolov8.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def main(opts, cfgs):
176176
timer.toc() # end timing this image
177177

178178
if opts.save_images:
179-
plot_img(img0, frame_id, [cur_tlwh, cur_id, cur_cls], save_dir=os.path.join(DATASET_ROOT, 'reuslt_images', seq))
179+
plot_img(img0, frame_id, [cur_tlwh, cur_id, cur_cls], save_dir=os.path.join(DATASET_ROOT, 'result_images', seq))
180180

181181
frame_id += 1
182182

@@ -305,7 +305,7 @@ def save_videos(seq_names):
305305
seq_names = [seq_names]
306306

307307
for seq in seq_names:
308-
images_path = os.path.join(DATASET_ROOT, 'reuslt_images', seq)
308+
images_path = os.path.join(DATASET_ROOT, 'result_images', seq)
309309
images_name = sorted(os.listdir(images_path))
310310

311311
to_video_path = os.path.join(images_path, '../', seq + '.mp4')

0 commit comments

Comments
 (0)