opencv cout访问冲突问题

时间:2015-01-26 19:10:37

标签: opencv access-violation cout

我刚刚安装了opencv。我使用VisualStudio 2013免费版。 每当我使用cout显示Mat对象时,我得到这个: myOpenCVStudy.exe中0x734ADE19(msvcp100.dll)的未处理异常:0xC0000005:访问冲突读取位置0x00000000。 我的代码很简单:

Mat M;
M.create(4, 4, CV_8UC(2));
cout << "M = " << endl << " " << M << endl << endl;

有什么想法吗? 感谢

0 个答案:

没有答案