Correcting the naming of result display.
This commit is contained in:
parent
e5cc957e37
commit
bfe3d2dc98
12 changed files with 10 additions and 10 deletions
|
@ -124,7 +124,7 @@ title('Pose (rotation and translation)');
|
|||
xlabel('Time (s)');
|
||||
|
||||
%% Output HOG files
|
||||
[hog_data, valid_inds, vid_id] = Read_HOG_files({name}, output);
|
||||
[hog_data, valid_inds] = Read_HOG_file([output, '/', name, '.hog']);
|
||||
|
||||
%% Output aligned images
|
||||
img_files = dir([outputDir_aligned, '/*.png']);
|
||||
|
|
Binary file not shown.
|
@ -149,7 +149,7 @@ hold on;
|
|||
% Make it look nice and print to a pdf
|
||||
set(gca,'xtick',[0:0.05:0.15])
|
||||
xlim([0,0.15]);
|
||||
xlabel('Size normalised shape RMS error','FontName','Helvetica');
|
||||
xlabel('Size normalised shape error','FontName','Helvetica');
|
||||
ylabel('Proportion of images','FontName','Helvetica');
|
||||
grid on
|
||||
legend('show', 'Location', 'SouthEast');
|
||||
|
|
|
@ -14,7 +14,7 @@ else
|
|||
database_root = 'D:/Dropbox/Dropbox/AAM/test data/';
|
||||
end
|
||||
|
||||
database_root = [database_root, '/ytceleb_annotations_CVPR2014/'];
|
||||
database_root = [database_root, '/ytceleb/'];
|
||||
|
||||
in_vids = dir([database_root '/*.avi']);
|
||||
|
||||
|
|
|
@ -96,7 +96,7 @@ plot(error_x, error_y, '-.k','DisplayName', 'DRMF (CVPR 13)', 'LineWidth',line_w
|
|||
|
||||
set(gca,'xtick',[0:0.05:0.15])
|
||||
xlim([0,0.15]);
|
||||
xlabel('Size normalised shape RMS error','FontName','Helvetica');
|
||||
xlabel('IOD normalised shape error','FontName','Helvetica');
|
||||
ylabel('Proportion of images','FontName','Helvetica');
|
||||
grid on
|
||||
% title('Fitting in the wild without outline','FontSize',60,'FontName','Helvetica');
|
||||
|
@ -171,7 +171,7 @@ plot(error_x, error_y, '-.k','DisplayName', 'DRMF', 'LineWidth',line_width);
|
|||
|
||||
set(gca,'xtick',[0:0.05:0.15])
|
||||
xlim([0,0.15]);
|
||||
xlabel('Size normalised shape RMS error','FontName','Helvetica');
|
||||
xlabel('IOD normalised shape error','FontName','Helvetica');
|
||||
ylabel('Proportion of images','FontName','Helvetica');
|
||||
grid on
|
||||
%title('Fitting in the wild','FontSize',60,'FontName','Helvetica');
|
||||
|
|
|
@ -72,7 +72,7 @@ plot(error_x, error_y, '-.k','DisplayName', 'DRMF [27]', 'LineWidth',line_width)
|
|||
|
||||
set(gca,'xtick',[0:0.05:0.15])
|
||||
xlim([0,0.15]);
|
||||
xlabel('Size normalised shape RMS error','FontName','Helvetica');
|
||||
xlabel('IOD normalised shape error','FontName','Helvetica');
|
||||
ylabel('Proportion of images','FontName','Helvetica');
|
||||
grid on
|
||||
% title('Fitting in the wild without outline','FontSize',60,'FontName','Helvetica');
|
||||
|
@ -154,7 +154,7 @@ plot(error_x, error_y, '-.k','DisplayName', 'DRMF [27]', 'LineWidth',line_width)
|
|||
|
||||
set(gca,'xtick',[0:0.05:0.15])
|
||||
xlim([0,0.15]);
|
||||
xlabel('Size normalised shape RMS error','FontName','Helvetica');
|
||||
xlabel('IOD normalised shape error','FontName','Helvetica');
|
||||
ylabel('Proportion of images','FontName','Helvetica');
|
||||
grid on
|
||||
% title('Fitting in the wild without outline','FontSize',60,'FontName','Helvetica');
|
||||
|
@ -236,7 +236,7 @@ plot(error_x, error_y, '-.k','DisplayName', 'DRMF [27]', 'LineWidth',line_width)
|
|||
|
||||
set(gca,'xtick',[0:0.05:0.15])
|
||||
xlim([0,0.15]);
|
||||
xlabel('Size normalised shape RMS error','FontName','Helvetica');
|
||||
xlabel('IOD normalised shape error','FontName','Helvetica');
|
||||
ylabel('Proportion of images','FontName','Helvetica');
|
||||
grid on
|
||||
% title('Fitting in the wild without outline','FontSize',60,'FontName','Helvetica');
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -54,7 +54,7 @@ plot(error_x, error_y, 'r','DisplayName', 'OpenFace', 'LineWidth',line_width);
|
|||
|
||||
set(gca,'xtick',[0:0.02:0.06])
|
||||
xlim([0,0.08]);
|
||||
xlabel('Size normalised shape RMS error','FontName','Helvetica');
|
||||
xlabel('IOD normalised shape error','FontName','Helvetica');
|
||||
ylabel('Proportion of images','FontName','Helvetica');
|
||||
grid on
|
||||
% title('Fitting in the wild without outline','FontSize',60,'FontName','Helvetica');
|
||||
|
@ -108,7 +108,7 @@ plot(error_x, error_y, 'r','DisplayName', 'CLNF hierarch', 'LineWidth',line_widt
|
|||
|
||||
set(gca,'xtick',[0:0.02:0.08])
|
||||
xlim([0,0.08]);
|
||||
xlabel('Size normalised shape RMS error','FontName','Times New Roman');
|
||||
xlabel('IOD normalised shape error','FontName','Times New Roman');
|
||||
ylabel('Proportion of images','FontName','Times New Roman');
|
||||
grid on
|
||||
title('Fitting in the wild with outline','FontSize',60,'FontName','Times New Roman');
|
||||
|
|
Loading…
Reference in a new issue