Fixing a missing comma.

This commit is contained in:
Tadas Baltrusaitis 2017-12-12 08:57:07 +00:00
parent e629ae50be
commit 061f693022
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ RecorderOpenFace::RecorderOpenFace(const std::string in_filename, RecorderOpenFa
metadata_file << "Input:" << in_filename << endl;
}
metadata_file << "Camera parameters:" << parameters.getFx() << "," << parameters.getFy() << parameters.getCx() << "," << parameters.getCy() << endl;
metadata_file << "Camera parameters:" << parameters.getFx() << "," << parameters.getFy() << "," << parameters.getCx() << "," << parameters.getCy() << endl;
// Create the required individual recorders, CSV, HOG, aligned, video
csv_filename = path(filename).concat(".csv").string();