opencv:使用cout和Mat对象抛出异常

时间:2013-01-17 07:50:38

标签: c++ opencv visual-studio-2012

我需要打印我的Mat对象,程序抛出异常......项目非常简单:使用cout创建Mat对象和打印 - 就像在OpenCV教程中一样:

#include <core/core.hpp>
#include <highgui/highgui.hpp>

#include <iostream>

using namespace std;
using namespace cv;

int main(int argc, char *argv[])
{
    Mat O = Mat::ones(2, 2, CV_32F);
    cout << "O = " << endl << " " << O << endl << endl;

    // Point2f P(5, 1);
    // cout << "Point (2D) = " << P << endl << endl;

return 0;
}

例外情况说:Unhandled exception at 0x59430671 (msvcp100d.dll) in printingTest.exe: 0xC0000005: Access violation reading location 0x00000000。控制台仅显示

O = [

准确地说,它停在“operations.hpp”上:

static inline std::ostream& operator << (std::ostream& out, const Mat& mtx) { Formatter::get()->write(out, mtx); return out; }

似乎“空白”是空的,但有人知道为什么吗?教程说它应该有用......

我之前遇到过类似的抛出异常的问题,我在这里解决了它:

http://answers.opencv.org/question/5113/problem-with-reading-image-to-mat/

是否可能存在另一个环境变量冲突?或者可能是碰撞'因为我正在使用VS2012而且只有v10才有OpenCV?

评论的Point2f正常工作。

1 个答案:

答案 0 :(得分:1)

您的代码在VS2010中运行良好。确保链接正确的库(发布与调试)。如果这无助于尝试重新安装openCV或在VS2012上自行构建,请从源代码中使用cmake进行准备。