How do I get two images to display top and bottom of screen in Matlab/Psychtoolbox? I can already do left and right sides.

6 visualizaciones (últimos 30 días)
Hi, I'm trying to display two images, one on the top, and one at the bottom of the screen in Psychtoolbox. I know how to do that already with the right and left sides of the screen. The code for that is below. Any advice would be appreciated!
[imageHeight,imageWidth,colorChannels]=size(ImageDataData);
gap=100;
leftRect=[xCenter-gap-imageWidth,yCenter-imageHeight/2,xCenter-gap,yCenter+imageHeight/2];
rightRect=[xCenter+gap,yCenter-imageHeight/2,xCenter+gap+imageWidth,...
yCenter+imageHeight/2];

Respuesta aceptada

Thorsten
Thorsten el 21 de Nov. de 2014
Editada: Thorsten el 21 de Nov. de 2014
The values are the x,y coordinates of the top right coordinates of the rectangle the x,y coordinates of the bottom left coordinate of the rectangle
topRect = [xCenter-imageWidth/2, YCenter-gap-imageHeight, xCenter+imageWidth/2, Ycenter-gap];
bottomRect = [xCenter-imageWidth/2, Ycenter+gap, xCenter+imageWidth/2, Ycenter+gap+imageHeight];

Más respuestas (0)

Categorías

Más información sobre Image display and manipulation en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by