我正在尝试将图像转换为字节向量并再次返回,但每个图像都是可怕的扭曲。我希望有人能告诉我原因。
我将此作为转换方法。
typedef unsigned char byte;
std::vector<byte> matToBytes(cv::Mat image)
{
int size = image.total() * image.elemSize();
std::vector<byte> img_bytes(size);
img_bytes.assign(image.datastart, image.dataend);
return img_bytes;
}
cv::Mat bytesToMat(vector<byte> bytes,int width,int height)
{
cv::Mat image(height,width,CV_8UC3,bytes.data());
return image;
}
它有效但不太好,我希望有人能发现原因。我很丢失!
答案 0 :(得分:0)
我正在玩我的代码,我让它工作。
cv::Mat bytesToMat(vector<byte> bytes,int width,int height)
{
cv::Mat image = cv::Mat(height,width,CV_8UC3,bytes.data()).clone(); // make a copy
return image;
}
我认为.clone()
做了一些重要的事情