i can,t install opencv2.4.4 vs microsoft visual studio 2010

asked 2014-02-01 18:51:53 -0600

mostafi1391 gravatar image

updated 2014-02-01 18:53:11 -0600

hi guys i want install open cv 2.4.4 on win7 32bit but i can,t i am using visual studio 2010 ultimate

I did all the installation steps carefully. But the vs still has not know library still my app code is undefined all linies of my code:

include "stdafx.h"

include <cv.h>

include <cxcore.h>

include <highgui.h>

int _tmain(int argc, _TCHAR* argv[]) { IplImage* img = cvLoadImage( "MGC.jpg" ); cvNamedWindow( "Example1", CV_WINDOW_AUTOSIZE ); cvShowImage("Example1", img); cvWaitKey(0); cvReleaseImage( &img ); cvDestroyWindow( "Example1" ); return 0; }

ERRORS:

image description

Finally, I'm sorry for bad English

thanks is advansed.

edit retag flag offensive close merge delete