Working towards image landmark detection experiments with the new interface.

This commit is contained in:
Tadas Baltrusaitis 2017-11-24 20:11:45 +00:00
parent 82c7ccd57f
commit fc8fe65f78
1 changed files with 3 additions and 3 deletions

View File

@ -59,7 +59,7 @@ parfor i=1:numel(dataset_dirs)
else
dos(command_c);
end
end
toc
@ -98,9 +98,9 @@ for i=1:numel(dirs)
curr = curr+1;
gt_landmarks = dlmread([dirs{i}, gt_labels(g).name], ' ', 'A4..B71');
[~, name, ~] = gt_labels(g).name;
% find the corresponding detection
all_params = dlmread([landmark_det_dir, landmark_dets(g).name], ',', 1, 0);
all_params = dlmread([landmark_det_dir, name, '.csv'], ',', 1, 0);
landmark_det = [all_params(landmark_inds_x); all_params(landmark_inds_y)]';