我是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
,一切正常。
答案 0 :(得分:0)
以前从未使用过 opencv ,但我会在这里猜测以下其中一项:
CvCapture* capture = cvCreateCameraCapture(0);
IplImage* frame = cvQueryFrame(capture);
IplImage* out = cvCreateImage(cvGetSize(frame), frame->depth, 1);
NULL或无效,因为您将它们传递到其他函数,您将进一步崩溃。