Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

answered Jun 5 '16

berak gravatar image

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

#include <list>
using std::list;

list<Mat> caps;
...
click to hide/show revision 2
No.2 Revision

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

#include <list>
using std::list;

list<Mat> caps;
frameList;
...
click to hide/show revision 3
No.3 Revision

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;
...