diff c/optical-flow.cpp @ 11:e77e2fd69b02

modularized code (not compiling)
author Nicolas Saunier <nico@confins.net>
date Wed, 11 Nov 2009 12:01:43 -0500
parents 068cf45c3f1b
children ff5403319cec
line wrap: on
line diff
--- a/c/optical-flow.cpp	Mon Nov 09 01:56:25 2009 -0500
+++ b/c/optical-flow.cpp	Wed Nov 11 12:01:43 2009 -0500
@@ -21,19 +21,12 @@
   time_t seconds;
   time_t t0 = time(NULL);
   while (frame) {
-    if (frameNum%1000 == 0) {
-      seconds = time(NULL)-t0;
+    ::goToFrameNum(capture, frameNum, frameNum+1000);
+    seconds = time(NULL)-t0;
 
-      cout << frameNum << " " << seconds << endl;
-    }
-//     cvConvertImage(frame, bwFrame);
-    
-//     for (int i=0; i<frame->height; ++i)
-//       for (int j=0; j<frame->width; ++j)
-// 	int gray = cvGetReal2D(bwFrame, i, j);
+    cout << frameNum << " " << seconds << endl;
 
-    frame = cvQueryFrame(inputVideo);
-    frameNum++;
+    frameNum+=1000;
   }
 
   return 1;