使用循环以随机顺序显示图片



我正在尝试使用循环在屏幕的左侧和右侧显示闪烁的图像。它目前正在工作,但按照图像在我的文件夹中出现的顺序显示图像,这不是想法,因为我希望它们随机呈现。想法将不胜感激。

我在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

您可以使用randperm预先打乱图像列表。

images = images(randperm(numel(images)));

使用这种方法,可以保证同一图像永远不会使用您的方法出现两次。

如果您只想随机显示任何图像(即使它以前显示过),而不是使用images{k},您可以从1numel(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);

相关内容

  • 没有找到相关文章

最新更新