我是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++;
}