C ++ Opencv:分配值后打印Mat时出错

时间:2019-03-12 11:59:34

标签: c++ opencv

我声明了Mat并使用for循环将值分配给每个元素。然后我要打印其值。但是,我发生核心转储错误。我的代码如下:

#include "opencv2/opencv.hpp"
#include <opencv2/core/core.hpp>
#include <iostream>
#include <time.h>

using namespace std;
using namespace cv;

int main(int argc, char const *argv[])
{
    int n = 4, i, j;
    srand (time(NULL));
    int n_Channel = 1;
    int mySizes[2] = {2, 4};
    Mat M = Mat::zeros(2, mySizes, CV_32FC(n_Channel));
    cout << M.rows << "," << M.cols << "," << M.channels() << endl;
    cout << M << endl;
    for (i = 0; i < M.rows; ++i)
    {
        for (j = 0; j < M.cols; ++j)
        {
            M.at<Vec3f>(i,j)[0] = rand() % n;
            cout << "i=" << i << ", j=" << j << ", M.at<Vec3f>(i,j)[0]=" << M.at<Vec3f>(i,j)[0] << endl;
        }
    }
    cout << "???????" << endl;
    cout << M << endl;

    return 0;
}

cout起作用,直到完成“ ???????”的打印为止。然后发生核心转储错误。屏幕消息如下:

2,4,1
[0, 0, 0, 0;
 0, 0, 0, 0]
i=0, j=0, M.at<Vec3f>(i,j)[0]=3
i=0, j=1, M.at<Vec3f>(i,j)[0]=3
i=0, j=2, M.at<Vec3f>(i,j)[0]=3
i=0, j=3, M.at<Vec3f>(i,j)[0]=1
i=1, j=0, M.at<Vec3f>(i,j)[0]=3
i=1, j=1, M.at<Vec3f>(i,j)[0]=3
i=1, j=2, M.at<Vec3f>(i,j)[0]=0
i=1, j=3, M.at<Vec3f>(i,j)[0]=0
???????
*** Error in `./my_app': malloc(): memory corruption (fast): 0x000000000245dfb0 ***
======= Backtrace: =========

我的代码有什么问题?为什么报告两次免费错误?

谢谢您的帮助!

1 个答案:

答案 0 :(得分:0)

第一个评论解决了我的问题。我只是在这里复制他的评论:

将int n_Channel = 1更改为const int n_Channel = 1,然后将所有M.at更改为M.at>。您的实际示例只有一个通道,因此使用Vec3f是错误的。使用Vec可以处理任意数量通道的浮动图像。但是,因此n_Channel必须为const。

谢谢@HansHirse。