Permalink
Browse files

Updated sample video, SP2 version

  • Loading branch information...
1 parent ca7a6cd commit 0563d2655ada8d7837dc8cc9b33708937ffdc74b @errollw committed Mar 25, 2014
View
@@ -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
View
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 0563d26

Please sign in to comment.