Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

errors building opencv with visual studio 2013

Hello,

I searched my problem here, but I dont find a specific solution for my problem. I run the below code, it is ok

int main(int argc, _TCHAR* argv[]) { cv::Mat img();
return 0; }

but I run the below code, it is failed.

int main(int argc, _TCHAR* argv[]) { Mat img = imread("deneme.png", 1); //imshow("opencv Window", img); return 0; }

The error is : unresolved external. Could you help me please?

errors building opencv with visual studio 2013

Hello,

I searched my problem here, but I dont find a specific solution for my problem. I run the below code, it is ok

int main(int argc, _TCHAR* argv[])
{
cv::Mat img(); 
return 0; }

}

but I run the below code, it is failed.

int main(int argc, _TCHAR* argv[])
{
Mat img = imread("deneme.png", 1);
//imshow("opencv Window", img);
return 0;
}

}

The error is : unresolved external. Could you help me please?