saving an image sequence from video using opencv2
Newbie question and yes I have spent a lot of time sifting through similar questions and Answers with no luck. What I am trying to do is save frames from a video file in a sequential order. I have managed to save one image using c and I cannot seem to save images after that. I have started using c++ in opencv instead of c and all I can do is view the video and not save any jpg's from it. I am using opencv2.4.4a on mac if that helps. below is my c example #include <stdio.h> #include <stdlib.h> #include <opencv/cv.h> #include <opencv/highgui.h> #include <iostream> using namespace cv; using