-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathMOT_copy_images.m
29 lines (24 loc) · 955 Bytes
/
MOT_copy_images.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
% --------------------------------------------------------
% MDP Tracking
% Copyright (c) 2015 CVGL Stanford
% Licensed under The MIT License [see LICENSE for details]
% Written by Yu Xiang
% --------------------------------------------------------
function MOT_copy_images
% test sequences
seqs = {'TUD-Crossing', 'PETS09-S2L2', 'ETH-Jelmoli', ...
'ETH-Linthescher', 'ETH-Crossing', 'AVG-TownCentre', 'ADL-Rundle-1', ...
'ADL-Rundle-3', 'KITTI-16', 'KITTI-19', 'Venice-1'};
indexes = {{31, 107}, {68, 111}, {82, 215}, {51, 78}, {97}, {52, 220} ...
{232}, {183}, {90}, {281}, {235}};
for i = 1:numel(seqs)
seq_name = seqs{i};
index = indexes{i};
for j = 1:numel(index)
ind = index{j};
file_src = sprintf('results_MOT/results_MOT_1/%s/%06d.png', seq_name, ind);
disp(file_src);
file_dst = sprintf('figures/%s_%06d.png', seq_name, ind);
copyfile(file_src, file_dst);
end
end