diff --git a/EyeTab/EyeTab.cpp b/EyeTab/EyeTab.cpp index fbe87cb..e9d6489 100644 --- a/EyeTab/EyeTab.cpp +++ b/EyeTab/EyeTab.cpp @@ -32,7 +32,7 @@ int main(int argc, const char** argv) gaze_smoothing_init(); // start reading in camera frames (720p video) - VideoCapture cap("videos\\sample_video.avi"); + VideoCapture cap("videos\\sample_video.mp4"); // setup image files used in the capture process Mat captureFrame, grayscaleFrame, smallFrame; @@ -46,6 +46,7 @@ int main(int argc, const char** argv) // read in a new image frame, break at end of file cap >> captureFrame; + flip(captureFrame, captureFrame, -1); if (captureFrame.empty()) break; // convert captured image to equalized gray scale diff --git a/EyeTab/videos/output.avi b/EyeTab/videos/output.avi deleted file mode 100644 index 275dbc1..0000000 Binary files a/EyeTab/videos/output.avi and /dev/null differ diff --git a/EyeTab/videos/sample_video.MP4 b/EyeTab/videos/sample_video.MP4 index e9ac853..87c1d94 100644 Binary files a/EyeTab/videos/sample_video.MP4 and b/EyeTab/videos/sample_video.MP4 differ diff --git a/EyeTab/videos/sample_video.avi b/EyeTab/videos/sample_video.avi deleted file mode 100644 index ea42953..0000000 Binary files a/EyeTab/videos/sample_video.avi and /dev/null differ