Fixing scripts with new capture and recorder.

This commit is contained in:
Tadas Baltrusaitis 2017-11-10 20:40:59 +00:00
parent db5b5fceda
commit 312d9e9608
4 changed files with 42 additions and 77 deletions

View file

@ -60,7 +60,7 @@ namespace Utilities
// TODO block copy, move etc. // TODO block copy, move etc.
// Opening based on command line arguments // Opening based on command line arguments
bool Open(std::vector<std::string> arguments); bool Open(std::vector<std::string>& arguments);
// Direct opening // Direct opening

View file

@ -54,7 +54,7 @@ std::cout << "Warning: " << stream << std::endl
#define ERROR_STREAM( stream ) \ #define ERROR_STREAM( stream ) \
std::cout << "Error: " << stream << std::endl std::cout << "Error: " << stream << std::endl
bool SequenceCapture::Open(std::vector<std::string> arguments) bool SequenceCapture::Open(std::vector<std::string>& arguments)
{ {
// Consuming the input arguments // Consuming the input arguments

View file

@ -10,37 +10,11 @@ end
output_dir = 'experiments/biwi_out'; output_dir = 'experiments/biwi_out';
dbSeqDir = dir([rootDir biwiDir]); dbSeqDir = dir([rootDir biwiDir]);
dbSeqDir = dbSeqDir(3:end);
output_dir = cat(2, output_dir, '/'); output_dir = cat(2, output_dir, '/');
offset = 0; command = sprintf('%s -inroot "%s" -out_dir "%s" -fx 505 -fy 505 -cx 320 -cy 240 -pose -vis-track ', executable, rootDir, output_dir);
r = 1 + offset;
numTogether = 25;
for i=3 + offset:numTogether:numel(dbSeqDir)
command = executable;
command = cat(2, command, [' -inroot ' '"' rootDir '"']);
% deal with edge cases
if(numTogether + i > numel(dbSeqDir))
numTogether = numel(dbSeqDir) - i + 1;
end
for n=0:numTogether-1
inputFile = [biwiDir dbSeqDir(i+n).name '/colour.avi'];
command = cat(2, command, [' -f "' inputFile '" -of "' output_dir '"']);
end
command = cat(2, command, [' -fx 505 -fy 505 -cx 320 -cy 240 -pose -vis-track ']);
if(verbose) if(verbose)
command = cat(2, command, [' -tracked ' outputVideo]); command = cat(2, command, [' -tracked ' outputVideo]);
@ -50,10 +24,13 @@ for i=3 + offset:numTogether:numel(dbSeqDir)
command = cat(2, command, [' -mloc "', varargin{find(strcmp('model', varargin))+1}, '"']); command = cat(2, command, [' -mloc "', varargin{find(strcmp('model', varargin))+1}, '"']);
end end
r = r+1; for i=1:numel(dbSeqDir)
inputFile = [biwiDir dbSeqDir(i).name '/colour.avi'];
command = cat(2, command, sprintf(' -f "%s" ', inputFile));
end
if(isunix) if(isunix)
unix(command, '-echo') unix(command, '-echo')
else else
dos(command); dos(command);
end end
end

View file

@ -10,25 +10,14 @@ function [output_dir] = run_bu_experiment(bu_dir, verbose, varargin)
buFiles = dir([bu_dir '*.avi']); buFiles = dir([bu_dir '*.avi']);
numTogether = 25;
for i=1:numTogether:numel(buFiles)
command = executable;
command = cat(2, command, [' -inroot ' '"' bu_dir '/"']);
% deal with edge cases
if(numTogether + i > numel(buFiles))
numTogether = numel(buFiles) - i + 1;
end
for n=0:numTogether-1
inputFile = [buFiles(n+i).name];
command = cat(2, command, [' -f "' inputFile '" -of "' output_dir '"']);
end
% Only outputing the pose (-pose) % Only outputing the pose (-pose)
command = cat(2, command, ' -fx 500 -fy 500 -cx 160 -cy 120 -pose -vis-track '); command = sprintf('%s -inroot "%s" -out_dir "%s" -fx 500 -fy 500 -cx 160 -cy 120 -pose -vis-track ', executable, bu_dir, output_dir);
for i=1:numel(buFiles)
inputFile = [buFiles(i).name];
command = cat(2, command, sprintf(' -f "%s" ', inputFile));
end
if(verbose) if(verbose)
command = cat(2, command, [' -tracked ' outputVideo]); command = cat(2, command, [' -tracked ' outputVideo]);
@ -43,6 +32,5 @@ function [output_dir] = run_bu_experiment(bu_dir, verbose, varargin)
else else
dos(command); dos(command);
end end
end
end end