gpt4 book ai didi

c++ - 简单的opencv相机程序中抛出异常

转载 作者:行者123 更新时间:2023-11-30 20:41:41 25 4
gpt4 key购买 nike

我是 opencv 的新手,编写了一个非常简单的程序来显示从相机捕获的图像。

代码是:

#include "cv.h"
#include "highgui.h"

int main(int argc, char** argv) {
cvNamedWindow("win");

CvCapture* capture = cvCreateCameraCapture(0);
IplImage* frame = cvQueryFrame(capture);
IplImage* out = cvCreateImage(cvGetSize(frame), frame->depth, 1);
while(1) {
frame = cvQueryFrame(capture);
if(!frame) break;
cvCanny(frame, out, 10, 100, 30);
cvShowImage("win", out); // !!!!! this line thrown exception

char c = cvWaitKey(20);
if(c==27) break;
}

cvReleaseImage(&out);
cvReleaseCapture(&capture);
cvDestroyWindow("win");
return 0;
}

但是当我运行它时,它抛出异常:

Unhandled exception at at 0x000007FEFDD0CACD in Project2.exe: Microsoft C++ exception: cv::Exception at memory location 0x000000000024DA50.

问题出在哪里,如何解决?

<小时/>

更新

终于找到原因了:

cvCanny(frame, out, 10, 100, 30);

最后一个参数太大,如果我将其更改为 3,一切正常。

最佳答案

以前从未使用过 opencv,但我将在这里猜测以下之一:

 CvCapture* capture = cvCreateCameraCapture(0);
IplImage* frame = cvQueryFrame(capture);
IplImage* out = cvCreateImage(cvGetSize(frame), frame->depth, 1);

NULL或无效,并且由于您随后将它们传递给其他函数,因此您会进一步崩溃。

关于c++ - 简单的opencv相机程序中抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11824041/

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