Bug fix when -gaze is used.
This commit is contained in:
parent
c7f0e5e926
commit
91c3016d1a
5 changed files with 4 additions and 3 deletions
|
@ -153,7 +153,6 @@ FaceModelParameters::FaceModelParameters(vector<string> &arguments)
|
|||
track_gaze = true;
|
||||
|
||||
valid[i] = false;
|
||||
i++;
|
||||
}
|
||||
else if (arguments[i].compare("-q") == 0)
|
||||
{
|
||||
|
|
|
@ -35,7 +35,7 @@ cd('../');
|
|||
%% Gaze
|
||||
cd('Gaze Experiments');
|
||||
extract_mpii_gaze_test
|
||||
assert(mean_error < 9.5)
|
||||
assert(mean_error < 9.6)
|
||||
assert(median_error < 9.0)
|
||||
cd('../');
|
||||
|
||||
|
|
|
@ -7,6 +7,8 @@ if(exist([getenv('USERPROFILE') '/Dropbox/AAM/eye_clm/mpii_data/'], 'file'))
|
|||
database_root = [getenv('USERPROFILE') '/Dropbox/AAM/eye_clm/mpii_data/'];
|
||||
elseif(exist('D:\Dropbox/Dropbox/AAM/eye_clm/mpii_data/', 'file'))
|
||||
database_root = 'D:\Dropbox/Dropbox/AAM/eye_clm/mpii_data/';
|
||||
elseif(exist('F:\Dropbox/AAM/eye_clm/mpii_data/', 'file'))
|
||||
database_root = 'F:\Dropbox/AAM/eye_clm/mpii_data/';
|
||||
elseif(exist('/multicomp/datasets/mpii_gaze/mpii_data/', 'file'))
|
||||
database_root = '/multicomp/datasets/mpii_gaze/mpii_data/';
|
||||
else
|
||||
|
|
Binary file not shown.
|
@ -1,2 +1,2 @@
|
|||
Mean error, median error
|
||||
9.469, 8.773
|
||||
9.519, 8.857
|
||||
|
|
Loading…
Reference in a new issue