我需要实现一个函数,该函数接收包含图像字节的字符串(通过 boost 套接字连接接收)并将信息转换为OpenCV cv::Mat。
我也知道图像的宽度和高度以及它的字节大小。我的功能如下所示:
void createImageFromBytes(const std::string& name, std::pair<int,int> dimensions, const std::string& data)
{
int width,height;
width = dimensions.first;
height = dimensions.second;
//convert data to cv::Mat image
std::string filepng = DATA_PATH"/" + name +".png";
imwrite(filepng, image);
}
执行此操作的最佳方法是什么?OpenCV 是否有来自字符串的 Mat 构造函数?