如何从 MAT 文件中的元胞数组检索图像?
我已使用以下代码将多个 (64) 图像放入 MAT 文件中:
D = dir('*.wav');
wavcell = cell(1,numel(D));
for i = 1:numel(D)
wavcell{i} = wavread(D(i).name);
end
但是,我现在无法从此 MAT 文件中的任何矩阵中检索图像。它包含一个 64x1 结构数组 (D
)、一个 1x64 元胞数组 (imcell
) 和一个包含一个数字的数组 (64) (i
) >)。
我需要能够访问单元阵列中的单个图像,以便在 psychtoolbox 实验中使用。
任何帮助将不胜感激!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我看到的第一个问题:您正在加载 WAV 文件,它们是音频文件,而不是图像文件。您应该首先尝试纠正这种情况。
一旦您确定加载了正确类型的数据(即图像),您就可以通过 LOAD 命令:
现在,本地工作区中将有一个名为
imcell
的变量,它将是图像数据的元胞数组。要索引内容元胞数组,您可以使用大括号{}
,如下所示:The first problem I'm seeing: you're loading WAV files, which are audio files, not image files. You should first try to remedy this situation.
Once you're sure that you're loading the right type of data (i.e. images), you can get the data back out of the MAT-file you create in a number of ways with the LOAD command:
Now you will have a variable in the local workspace called
imcell
which will be a cell array of image data. To index the contents of the cell array, you would use curly braces{}
like so: