Updating another script with a new interface.

This commit is contained in:
Tadas Baltrusaitis 2017-11-14 20:04:30 +00:00
parent 8947395ca5
commit 726cca5d59

View file

@ -26,15 +26,14 @@ database_root = [database_root, '/ytceleb/'];
in_vids = dir([database_root '/*.avi']);
command = executable;
command = cat(2, command, ' -2Dfp ');
command = sprintf('%s -2Dfp -out_dir "%s" ', executable, output);
% add all videos to single argument list (so as not to load the model anew
% for every video)
for i=1:numel(in_vids)
in_file_name = [database_root, '/', in_vids(i).name];
command = cat(2, command, [' -f "' in_file_name '" -of "' output '"']);
command = cat(2, command, [' -f "' in_file_name '" ']);
end
if(isunix)
@ -50,15 +49,13 @@ if(~exist(output, 'file'))
mkdir(output)
end
command = executable;
command = cat(2, command, ' -mloc model/main_clm_general.txt ');
command = cat(2, command, ' -2Dfp ');
command = sprintf('%s -2Dfp -out_dir "%s -mloc model/main_clm_general.txt " ', executable, output);
% add all videos to single argument list (so as not to load the model anew
% for every video)
for i=1:numel(in_vids)
in_file_name = [database_root, '/', in_vids(i).name];
command = cat(2, command, [' -f "' in_file_name '" -of "' output '"']);
command = cat(2, command, [' -f "' in_file_name '"']);
end
if(isunix)