final = decimal;
figure('Name','Final EMBEDED Image'),imshow(final);
[image path] = uiputfile({'*.jpg';'*.bmp';'*.tif'},'Save Encoded File As');
最终是改变的图像。 我必须通过动态给出图像的路径和名称来存储该图像。为此,我尝试过uiputfile。功能正在发挥作用但不能达到目的。
答案 0 :(得分:0)
uiputfile
只返回用户选择的文件名和路径,它不保存任何内容。您仍然需要以某种方式保存图像:
fname = fullfile(path, image);
imwrite(final, fname);