OpenCV将图像转换为字节并返回
Posted
技术标签:
【中文标题】OpenCV将图像转换为字节并返回【英文标题】:OpenCV Convert Image to Bytes and Back 【发布时间】:2015-10-09 00:14:35 【问题描述】:我正在尝试将图像转换为字节向量并再次转换回来,但每个图像都严重失真。我希望有人能告诉我原因。
我有这个作为我的转换方法。
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;
它有效但效果不佳,我希望有人能找出原因。我很迷茫!
【问题讨论】:
【参考方案1】:我正在玩弄我的代码,我得到了这个工作。
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()
做了一些重要的事情
【讨论】:
当bytes
超出范围时,没有clone
,图像指向垃圾值,因此您需要clone
进行深层复制以上是关于OpenCV将图像转换为字节并返回的主要内容,如果未能解决你的问题,请参考以下文章
Python OpenCV 图像到字节字符串以进行 json 传输