Two output bug fixes.

This commit is contained in:
Tadas Baltrusaitis
2017-11-05 09:30:56 +00:00
parent ab8aaa19ed
commit ac96608bfd
2 changed files with 7 additions and 2 deletions

View File

@@ -187,7 +187,12 @@ void RecorderCSV::WriteLine(int observation_count, double time_stamp, bool landm
// Output the 2D eye landmarks
for (auto eye_lmk : eye_landmarks)
{
output_file << ", " << eye_lmk;
output_file << ", " << eye_lmk.x;
}
for (auto eye_lmk : eye_landmarks)
{
output_file << ", " << eye_lmk.y;
}
}