gpt4 book ai didi

c++ - OpenCV - Videocapture 中未处理的异常

转载 作者:太空宇宙 更新时间:2023-11-03 22:14:28 26 4
gpt4 key购买 nike

我最近安装了 OpenCV 2.4.7 并将其配置到我的 Visual Studio 2010 Ultimate ide...我什至测试了显示图像的代码...

#include "opencv2/highgui/highgui.hpp"
#include "iostream"

using namespace cv;
using namespace std;

int main()
{
Mat im = imread("d:/lena.jpg");
if (im.empty())
{
cout << "Cannot load image!" << endl;
return -1;
}
imshow("Image", im);
waitKey(0);
}

它有效,但是当我尝试使用给定的视频捕获代码时 here , 它给出了一个错误..

#include "opencv2/opencv.hpp"

using namespace cv;

int main(int, char**)
{
VideoCapture cap(0); // open the default camera
if(!cap.isOpened()) // check if we succeeded
return -1;

Mat edges;
namedWindow("edges",1);
for(;;)
{
Mat frame;
cap >> frame; // get a new frame from camera
cvtColor(frame, edges, CV_BGR2GRAY);
GaussianBlur(edges, edges, Size(7,7), 1.5, 1.5);
Canny(edges, edges, 0, 30, 3);
imshow("edges", edges);
if(waitKey(30) >= 0) break;
}
// the camera will be deinitialized automatically in VideoCapture destructor
return 0;
}

Unhandled exception at 0x75dc812f in myNewOpenCv1.exe: Microsoft C++ exception: cv::Exception at memory location 0x0019f6d8

不知道是不是安装的问题。我是 OpenCV 的新手,知道的不多,所以如果任何熟悉这个的人都可以为我修复这个错误,并给我解释为什么会发生这种情况,并提供指导,那就太好了。

期待您的解答- 乔纳森 -

最佳答案

尝试替换

cap >> frame;

与:

while (frame.empty()) {
cap >> frame;
}

有时 opencv 相机 API 会在前几帧出现垃圾信息,但过一会儿一切正常。

您可能希望将该循环限制为固定的迭代次数以避免无限运行。

关于c++ - OpenCV - Videocapture 中未处理的异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19976371/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com