First time here? Check out the FAQ!

Ask Your Question
0

how to save current frame and previous frame

asked Feb 26 '14

Amit gravatar image

i want to save the current frame and previous frame in some directory from video in opencv. i am using C++ and opencv 2.4.8 library.

Preview: (hide)

1 answer

Sort by » oldest newest most voted
3

answered Feb 26 '14

 VideoCapture cap(0);
 Mat curr, prev;
 if(!cap)return -1;
 cap>>curr;
 curr.copyTo(prev);
 while(1)
 {
      cap>>curr;
      imwrite("current.png",curr);
      imwrite("previous.png", prev);
      curr.copyTo(prev);
      if(waitKey(5)==27)break; //Esc pressed
 }
Preview: (hide)

Comments

thanks hristov, its working.... good day.......

Amit gravatar imageAmit (Feb 27 '14)edit

Question Tools

Stats

Asked: Feb 26 '14

Seen: 4,459 times

Last updated: Feb 26 '14