我是openCV的新手。我使用本教程对其进行配置,http://karanjthakkar.wordpress.com/2012/11/21/usin-opencv-2-4-2-with-visual-studio-2012-on-windows-7-64-bit/
但我使用win8
. 当我写这个基本代码时:
#include "stdafx.h"
#include "opencv2/highgui/highgui.hpp"
int _tmain(int argc, _TCHAR* argv[])
{
CvCapture* capture = 0;
IplImage* frame = 0;
while(true)
{
capture = cvCaptureFromCAM(1);
frame = cvQueryFrame( capture );
cvNamedWindow("Sample Program", CV_WINDOW_AUTOSIZE);
cvShowImage("Sample Program", frame);
int c = cvWaitKey(10);
if( (char)c == 27 ) { exit(0); }
}
cvReleaseImage(&frame);
return 0;
}
显示此消息的对话框:
opencv_highgui242.dll is missing from your computer.
try re installing the program to fix this problem.
我能做些什么呢?
EDIT:
I solve that with adding library to my project path but i have new error:
the application was unable start correctly(0xc000007b). click ok to close the application.