我是opencv的新手,它正在发展。我打开了相机馈送,我想拍摄30秒后的最后一帧。并将框架保存为Mat类型对象。为了确保我使用imshow来显示使用过的图像。但是我得到了错误,请在我使用的代码下面找到。
int main(int argc, char** argv){
VideoCapture cap(0);
vector<Mat> frame;
namedWindow("feed",1);
for(;;)
{
frame.push_back(Mat()); // push back images of Mat type
cap >> frame.back(); // take the last frame
imshow("feed", frame);
if (waitKey(30) >=0) { // wait 30s to take the last
break;
}
}
return(0);
误差OpenCV Error: Assertion failed (0 <= i && i < (int)v.size()) in getMat, file /Users/waruni/Documents/opencv/modules/core/src/matrix.cpp, line 992
libc++abi.dylib: terminating with uncaught exception of type cv::Exception: /Users/waruni/Documents/opencv/modules/core/src/matrix.cpp:992: error: (-215) 0 <= i && i < (int)v.size() in function getMat
正如berak所提到的,您不能显示矩阵向量。所以,frame.back()
可能是你想要的。我稍微修改了一下你的节目。
#include <opencv2/videoio.hpp>
#include <opencv2/highgui.hpp>
int main(int argc, char *argv[])
{
cv::VideoCapture cap(0);
if(!cap.isOpened()) // check if we succeeded
return -1;
std::vector<cv::Mat> frame;
cv::namedWindow("feed", cv::WINDOW_AUTOSIZE);
for(;;)
{
cv::Mat temp;
cap >> temp;
frame.push_back(temp);
cv::imshow("feed", frame.back());
if (cv::waitKey(30*1000) >=0) { // wait 30s to take the last
break;
}
}
return(0);
}