如何在MATLAB中读出base64图像?

时间:2017-12-25 00:42:11

标签: image matlab base64

我有以下base64字符串,它是一张图片:Link to base64 image 我希望在Matlab中找回图像。我使用以下网站检查图像是否有效:https://codebeautify.org/base64-to-image-converter并且它没有任何问题。

从网站解码后下载图像时,我会收到以下信息:

图像大小为512x512,位深度为32位。此外,我知道这是一个彩色图像。

我尝试了这里提到的方法Decode base64 to RGB image in matlab,它利用了Apache库。但是,使用以下代码时:

result = native2unicode(base64.decode(uint8(img)).');

其中img是base64字符串,结果将是599636长字符数组。但是,512*512*3 = 786432

我想知道如何从这里开始获取512 * 512彩色图像?

编辑:

我目前的解决方法是将base64编码图像写入文本文件,并通过python将其读出,并将其作为图像写入磁盘,然后在matlab中重新加载。哪个有效,但非常非常难看。在Python中,它使用简单的脚本:

import base64
f = open('test.txt','r')
message = f.read()
print(message)
with open("imageToSave.png", "wb") as fh:
    fh.write(base64.decodebytes(bytearray(message,'utf-8')))

1 个答案:

答案 0 :(得分:2)

% Create a Java Base64 instance...
import('org.apache.commons.codec.binary.Base64');
base64 = Base64();

% Read the content of the file as text...
text = fileread('test.txt');
text = strtrim(text);

% Decode the text into a byte array...
img_bytes = base64.decode(text_bytes);

% Fill a temporary file with the decoded byte array...
fid = fopen('test.bin','w');
fwrite(fid,img_bytes,'int8');
fclose(fid);

% Read the temporary file as image and show the image...
img = imread('test.bin');
imshow(img);