diff --git a/gui/OpenFaceOffline/MainWindow.xaml.cs b/gui/OpenFaceOffline/MainWindow.xaml.cs index fdc53d16..1e18dbeb 100644 --- a/gui/OpenFaceOffline/MainWindow.xaml.cs +++ b/gui/OpenFaceOffline/MainWindow.xaml.cs @@ -250,7 +250,10 @@ namespace OpenFaceOffline recorder.Close(); // Post-process the AU recordings - face_analyser.PostProcessOutputFile(recorder.GetCSVFile()); + if(RecordAUs) + { + face_analyser.PostProcessOutputFile(recorder.GetCSVFile()); + } // Close the open video/webcam reader.Close(); diff --git a/lib/local/Utilities/src/SequenceCapture.cpp b/lib/local/Utilities/src/SequenceCapture.cpp index 4ee6e94b..ab272300 100644 --- a/lib/local/Utilities/src/SequenceCapture.cpp +++ b/lib/local/Utilities/src/SequenceCapture.cpp @@ -453,8 +453,6 @@ double SequenceCapture::GetProgress() } else { - //TODO test here - std::cout << frame_num << " " << vid_length << std::endl; return (double)frame_num / (double)vid_length; } }