1

我在使用 OpenCV 编程时遇到了麻烦。
经过很多时间,我发现 cout << mat 和单个像素值在类型转换后的结果是不同的。

这是代码

#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>
using namespace std;
using namespace cv;

int main() {
Mat a = (Mat_<int>(3, 3) << 1, 2, 3, 4, 5, 6, 7, 8, 9);
cout << "Initial mat type: " << a.type() << endl;
cout << "Pos(1, 1): " << a.at<int>(1, 1) << endl;

a.convertTo(a, CV_8U);
cout << "CV_8U converted mat type: " << a.type() << endl;
cout << "Mat content: \n" << a << endl;
cout << "Pos(1, 1): " << a.at<int>(1, 1) << endl;

return 0;
}

结果在这里:

Initial mat type: 4 // CV_32S 
Pos(1, 1): 5
CV_8U converted mat type: 0 // CV_8U
Mat content: 
[1, 2, 3;
  4, 5, 6;
  7, 8, 9]
Pos(1, 1): -1254749944

这意味着,从 CV_32S 转换为 CV_8U 后,我从 cout << a 得到正确的矩阵,但是在访问单个像素时,我一团糟:|
你能帮助我吗?感谢 !

4

1 回答 1

2

因为您已将值转换为不同的类型,所以您需要使用不同的类型来访问它们:

cout << "Pos(1, 1): " << static_cast<int>(a.at<uchar>(1, 1)) << endl;
于 2013-11-11T15:08:02.100 回答