Ask Your Question

Revision history [back]

error LNK1104: cannot open file 'opencv_calib3d245d.lib'

I'm a beginner in programming and I'm trying to build a recognition shape program, a project. I use visual studio 2010 and opencv 245 but it is just not working. I have this error LNK1104: cannot open file 'opencv_calib3d245d.lib' and here is the code :
int main (int argc, char* argv[]) {

//image 
IplImage *imgsource=cvLoadImage("C:\\Users\\EDELEKOMY\\Documents\\Visual Studio 2010\\Projects\\opencvproject2\\opencvproject2\\essai.png");

cvNamedWindow("test", CV_WINDOW_AUTOSIZE);
cvShowImage("test",imgsource);
cvWaitKey(0);
cvReleaseImage(&imgsource);
cvDestroyAllWindows();

return 0;

}

i added all the libraries and dll,please help me