1 | initial version |
opencv2 oddly had vector
and list
in the cv
namespace, this is gone in opencv3. just:
#include <list>
using std::list;
list<Mat> caps;
...
2 | No.2 Revision |
opencv2 oddly had vector
and list
in the cv
namespace, this is gone in opencv3. just:
#include <list>
using std::list;
list<Mat> caps;
frameList;
...
3 | No.3 Revision |
opencv2 oddly had it's just:vector
and list
in the cv
namespace, this is gone in opencv3.
#include "opencv2/opencv.hpp"
using namespace cv;
#include <list>
using std::list;
list<Mat> frameList;
...