我试图使用循环在屏幕的左侧和右侧显示闪烁的图像。它现在正在工作,但按照它们出现在我的文件夹中的顺序显示图像,这不是我想要随机呈现的想法。我们将不胜感激。
我在Windows上使用MATLAB中的psychtoolbox,这是我的代码:
%reading in all images
baseDir=pwd;
cd([baseDir,'\Images']) %change directory to images folder
jpegFiles = dir('*.jpg'); % create a cell array of all jpeg images
for k=1:size(jpegFiles,1)
images{k}=imread(jpegFiles(k).name);
end
cd(baseDir) %change directory back to the base directory
%using a loop to show images
for k=1:290
texture1(k)=Screen('MakeTexture',w,images{k});
end
for k=1:145
Screen('DrawTexture',w,(texture1(k)), [], leftposition);
Screen('DrawTexture',w,(texture1(k+145)), [], rightposition);
Screen('DrawLines', w, allCoords,...
lineWidthPix, black, [xCenter yCenter], 2);
Screen(w,'Flip');
pause(0.2);
end
答案 0 :(得分:2)
您可以使用randperm
预先对图像列表进行随机播放。
images = images(randperm(numel(images)));
使用这种方法,您可以保证使用您的方法不会出现相同的图像两次。
如果您只是想随机显示任何图像(即使之前已经显示过),而不是使用images{k}
,您可以从1
和numel(images)
之间的所有值中随机绘制索引。 randi
(使用images{randi([1 numel(images)])}
)并显示 图片。
texture1
或者您可以随机索引nImages = numel(images);
% Loop all of this as long as you want
left_texture = texture1(randi([1 nImages]));
right_texture = texture1(randi([ 1 nImages]));
Screen('DrawTexture', w, left_texture, [], leftposition);
Screen('DrawTexture', w, right_texture, [], rightposition);
。
在您的代码中看起来像这样
Static Analyzer