【发布时间】:2016-02-10 10:46:28
【问题描述】:
我已成功读取带有 imread 功能的灰度图像,我正在尝试访问所有像素值并将它们复制到 2D 矢量。我收到此错误:
gray image channels: 1
OpenCV Error: Assertion failed (dims <= 2 && data && (unsigned)i0 < (unsigned)si
ze.p[0] && (unsigned)(i1 * DataType<_Tp>::channels) < (unsigned)(size.p[1] * cha
nnels()) && ((((sizeof(size_t)<<28)|0x8442211) >> ((DataType<_Tp>::depth) & ((1
<< 3) - 1))*4) & 15) == elemSize1()) in cv::Mat::at, file C:\opencv_3\opencv\bui
ld\include\opencv2/core/mat.inl.hpp, line 894
我似乎不明白以下代码有什么问题:
Mat img = imread("C:\\digitalImageProcessing\\lion2.png", 0);
if (!img.data)
{
cout << "Could not open or find the image" << std::endl;
return -1;
}
namedWindow("Gray image", CV_WINDOW_AUTOSIZE);
// know the number of channels the image has
cout << "gray image channels: " << img.channels() << endl;
// ******************* READ the Pixel intensity *********************
int no_of_cols = img.cols;
int no_of_rows = img.rows;
int initial_value = 0;
std::vector<std::vector<int>> image_matrix;
image_matrix.resize(no_of_rows, std::vector<int>(no_of_cols,initial_value));
for (int j = 0; j < img.rows; j++)
{
for (int i = 0; i < img.cols; i++)
{
Scalar value = img.at<uchar>(i, j);
cout << "value = " << endl << " " << value.val[0] << endl << endl;
image_matrix[i][j] = intensity.val[0];
}
}
【问题讨论】:
-
我正在将列与行混合,仅此而已。问题可以结束了。