I usually work in openCV in linux environment. when i installed opencv based on Stack Overflow. When i run a program a blank command window opens and no action. the following errors are displayed.
'jms.exe': Loaded 'C:\opencv\build\x86\vc10\bin\opencv_core249d.dll', Cannot find or open the PDB file
The thread 'Win32 Thread' (0x1a7c) has exited with code -1073741510 (0xc000013a).
The program '[2556] jms.exe: Native' has exited with code -1073741510 (0xc000013a).
What i have to do ? The program is
#include<opencv\highgui.h>
#include<iostream>
using namespace cv;
using namespace std;
int main()
{
Mat im = imread("E:\10.jpg");
if(!im.data)
{
cout<<"Image NOT FOUND "<<endl;
return -1;
}
cout<<"Test"<<endl;
namedWindow("Image",0);
imshow("Image",im);
waitKey(10);
}
while typing the code it displays the available header files and syntax of each function as hint.