我必须在字符串中转换c++中的图像矩阵。我找到了两种方法:
const char *inputD = (const char*)(img.data);
Size imageSiz = img.size();
int w = imageSiz.width;
int h = imageSiz.height;
int ch = img.channels();
_return.append(inputD, w*h*ch);
其中_return为:
std::string& _return
而这个总是有效的。但我也找到了另一种方法:
string matAsStringL (imgL.begin<unsigned char>(), imgL.end<unsigned char>());
_return.push_back(matAsStringL);
其中_return当然不同:
std::vector<std::string> & _return
但第二种方法不适用于彩色图像,而仅适用于灰度图像。为什么?我想了解。
第二个错误是:在未知函数中断言失败(elemSize((==sizeof(_Tp((。在mat.hpp
一个例子是:
img1 = imread(filenameL , 0); //Gray_scale
string matAsStringI(img1.begin<unsigned char>(), img1.end<unsigned char>());
//now in matAsString I have the info I need
cvtColor(img1, coloredImage1, CV_GRAY2RGB);
string matAsStringC(coloredImage1.begin<unsigned char>(), coloredImage1.end<unsigned char>()); //crash here with the assertion error
不适用于coloredImage1,但适用于img1。如果我更改coloredImage1并使用第一种方法,它可以正常工作。
您可以直接在字符串构造函数中使用mat的迭代器,但您将只获得每个像素的第一个无符号字符,而不是所有数据。
你必须对你的第一个和第二个解决方案(如(做出妥协
#include <string>
#include <vector>
#include <opencv2/opencv.hpp>
int main()
{
const char *path = "/home/gerard_gaudeau/Downloads/image.jpg";
cv::Mat mat = cv::imread(path);
cv::Size size = mat.size();
int total = size.width * size.height * mat.channels();
std::cout << "Mat size = " << total << std::endl;
std::vector<uchar> data(mat.ptr(), mat.ptr() + total);
std::string s(data.begin(), data.end());
std::cout << "String size = " << s.length() << std::endl;
return 0;
}