Unix script fix.
This commit is contained in:
parent
bb0e09d0a7
commit
d033f776c1
2 changed files with 5 additions and 1 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -89,3 +89,7 @@ exe/releases/OpenFace_0.3.0_win_x86/
|
||||||
lib/3rdParty/CameraEnumerator/x64/
|
lib/3rdParty/CameraEnumerator/x64/
|
||||||
lib/local/Utilities/Debug/
|
lib/local/Utilities/Debug/
|
||||||
lib/3rdParty/CameraEnumerator/Debug/
|
lib/3rdParty/CameraEnumerator/Debug/
|
||||||
|
exe/releases/OpenFace_0.4.0_win_x64/
|
||||||
|
exe/releases/OpenFace_0.4.0_win_x86/
|
||||||
|
lib/3rdParty/CameraEnumerator/Release/
|
||||||
|
lib/local/Utilities/Release/
|
||||||
|
|
|
@ -20,7 +20,7 @@ end
|
||||||
|
|
||||||
%% Demonstrating reading the output files
|
%% Demonstrating reading the output files
|
||||||
[~, out_filename,~] = fileparts(in_file);
|
[~, out_filename,~] = fileparts(in_file);
|
||||||
out_filename = sprintf("%s/%s.csv", output, out_filename);
|
out_filename = sprintf('%s/%s.csv', output, out_filename);
|
||||||
|
|
||||||
% First read in the column names
|
% First read in the column names
|
||||||
tab = readtable(out_filename);
|
tab = readtable(out_filename);
|
||||||
|
|
Loading…
Reference in a new issue