Issue in connecting MSVC 2010 with OpenCV 2.4.8
Hi all, I am trying to connect my MSVC 2010 Express Edition to Open CV 2.4.8 and thereby following the href="[http://http://stackoverflow.com/questions/10901905/installing-opencv-2-4-3-in-visual-c-2010-express].I installed all dependencies successfully and removed all Linking errors but now my Simple first program such as:
include <opencv2 highgui="" highgui.hpp="">
include <iostream>
using namespace cv; using namespace std;
int main() { Mat im = imread("c:/full/path/to/lena.jpg"); if (im.empty()) { cout << "Cannot load image!" << endl; return -1; } imshow("Image", im); waitKey(0); }
is disturbing me alot as it builds successfuly with a pop up window saying "The application was unable to start correctly(0X000007b).Click Ok to close the application".Initially i searched for it on the web but didn't get any supportive help. P.S. I am having Win8 64-bit.
it did not find the opencv dlls at runtime.
append the resp. folder to the PATH
would you elaborate please?
i need it urgently !!!
also remember that opencv_calib3d243d.lib should change opencv_calib3d248d.lib because your opencv verison is 2.4.8 (d for debug mode)