gpt4 book ai didi

image - 在 Matlab 中保存 imagesc 输出

转载 作者:太空宇宙 更新时间:2023-11-03 20:11:14 33 4
gpt4 key购买 nike

我正在使用 imagesc 获取完整图像。但是,我只能设法显示它,然后我必须手动保存它,我找不到使用 imwrite 或 imsave 从脚本中保存图像的方法。有可能吗?

代码:

image='C:\image.jpg';
in1= imread((image));
in=rgb2gray(in1);
in_in= cumsum(cumsum(double(in)), 2);
figure, imagesc(in_in);

最佳答案

您还可以使用打印 命令。例如,如果您正在运行多个图像并希望将它们序列化并保存,您可以执行以下操作:

% Create a new figure
figure (fig_ct)
% Plot your figure

% save the figure to your working directory
eval(['print -djpeg99 ' num2str(fig_ct)]);
% increment the counter for the next figure
fig_ct = fig_ct+1;

fig_ct 只是一个计数器。如果您有兴趣将其保存为不同于 jpeg 的其他格式,请查看文档,您可以使用 tiff、eps 等。

希望对你有帮助

关于image - 在 Matlab 中保存 imagesc 输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12146112/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com