mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2026-05-15 03:37:49 +00:00
Two output bug fixes.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user