OpenCV 3.0:无法将Mat对象收集到数组中

时间:2015-11-04 12:32:40

标签: java opencv release free mat

我是opencv的首发,我需要收集数组的帧,但在我的代码中所有的数组元素都相等,但是如果我用Improc.imwrite()函数写的那个pics不相似 这是我的代码

 VideoCapture capture = new VideoCapture("res/android.mp4");
 ArrayList<Mat> list = new ArrayList<>();
 Mat frame = new Mat();
 int countOfFrames = 0;
 while (true)
      {
       if (countOfFrames % 10 == 0)
             {
               capture.read(frame);
               if (frame.empty()) break;
               list.add(frame);
             }
               countOfFrames++;
       }

enter image description here

0 个答案:

没有答案