Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

opencv2 oddly had vectorand listin the cvnamespace, this is gone in opencv3. just:

#include <list>
using std::list;

list<Mat> caps;
...

opencv2 oddly had vectorand listin the cvnamespace, this is gone in opencv3. just:

#include <list>
using std::list;

list<Mat> caps;
frameList;
...

opencv2 oddly had vectorand listin the cvnamespace, this is gone in opencv3. it's just:

#include "opencv2/opencv.hpp"
using namespace cv;

#include <list>
using std::list;

list<Mat> frameList;
...