我是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
答案 0 :(得分:1)
正如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);
}