我最近在 Visual Studio 2010 中设置了 openCV 2.3.1。我使用 cmake 设置它并设法运行简单的“hello world”代码,如下所示:
#include "stdafx.h"
#include <opencv2/opencv.hpp>
#include <cxcore.h>
#include <highgui.h>
int _tmain(int argc, _TCHAR* argv[])
{
IplImage *img = cvLoadImage("funny-pictures-cat-goes-pew.jpg");
cvNamedWindow("Image:",1);
cvShowImage("Image:",img);
cvWaitKey();
cvDestroyWindow("Image:");
cvReleaseImage(&img);
return 0;
}
这段代码第一次能够运行,尽管它显示的是灰色图像而不是猫。当我试图查看错误时,它开始出现以下错误;Unhandled Exception at a certain memory location...:![enter image description here][1](can't upload image because of low credit points.但我希望你理解我的问题描述...
问候, 鲁扎尔