c_cpp 将base 64映像解码为cvmat opencv 3.0

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 将base 64映像解码为cvmat opencv 3.0相关的知识,希望对你有一定的参考价值。

#take the base64_decode from https://renenyffenegger.ch/notes/development/Base64/Encoding-and-decoding-base-64-with-cpp

std::string raw = base64_decode(im64);
        cv::Mat rawData( 1, raw.size(), CV_8UC1, (void*) raw.c_str());

        cv::Mat decodedImage  =  cv::imdecode( rawData, cv::IMREAD_COLOR /*, flags */ );
        cv::imshow("hola",decodedImage);

以上是关于c_cpp 将base 64映像解码为cvmat opencv 3.0的主要内容,如果未能解决你的问题,请参考以下文章

将base64URL解码为base64 - Swift

将 Base64 字符串解码为字节数组

将 .EXE 编码/解码为 Base64

如何使用颤振将 Base64 字符串解码为图像文件

如何将base64音频数据解码为wav格式

将base64 svg数据解码为svg文件