Fixing a missing comma.
This commit is contained in:
parent
e629ae50be
commit
061f693022
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue