Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将 imagesc 返回的图保存在矩阵中。我怎样才能做到这一点?我只知道 imagesc 返回一个句柄,但我不知道如何处理它。
的数据imagesc存储在CData属性中,因此使用它来提取它:
imagesc
CData
X = get(h, 'CData');
假设h是你的句柄。
h
现在X包含您的图像数据,您可以将其保存到文件中,例如:
X
save somefile.mat X