Hello there, I followed tutorial in On you pages "Installation by Using the Pre-built Libraries". Then I tried this simple cout function:
#include <opencv2\opencv.hpp>
#include <iostream>
using namespace std;
void main()
{
cout << "OpenCV Version: " << CV_VERSION << endl;
}
When debugging, VS 2013 throw me this errors:
I also folowed tutorial on Youtube which I think is the same as first tutorial.
Can anyone help me figure out this problem? Thanks much