我正在 Matlab 中为一个实验编写一个 GUI,在该实验中,测试参与者将查看一系列图像,并在每张图像之后,对图像进行评分。
我想始终保持窗口最大化。图像将显示几秒钟,然后删除,将出现一些用于评级的滑块。接下来,将隐藏滑块,并出现一个新图像,等等......
到目前为止,我已经开始使用最大化的图形窗口,直到我加载图像并使用 imshow 或 image 命令显示它,这会导致图形窗口调整大小并适合图像,而不是保持最大化。如果我然后再次最大化图形窗口,它会导致窗口框架明显闪烁,首先被最大化,然后调整大小,然后再次最大化 - 我想避免这种闪烁。
如何保持窗口最大化,并以 1:1 的比例显示图像(不缩放或调整大小以适应最大化的窗口)?
我知道 PsychToolbox,但它似乎没有用于创建滑块的命令(我将用于评分),我不想从头开始做这些。我还从 Matlab 文件交换中查看了 windowAPI,但仍然没有找到解决方案。
以下是我现在拥有的示例(在 Windows 7 64 位上使用 Matlab R2013a):
screenSize = get(0,'screensize');
screenWidth = screenSize(3);
screenHeight = screenSize(4);
% Create figure window, keeping it invisible while adding UI controls, etc.
hFig = figure('Name','APP',...
'Numbertitle','off',...
'Position', [0 0 screenWidth screenHeight],...
'WindowStyle','modal',...
'Color',[0.5 0.5 0.5],...
'Toolbar','none',...
'Visible','off');
% Make the figure window visible
set(hFig,'Visible','on');
% Maximize the figure window, using WindowAPI
WindowAPI(hFig, 'Position', 'work');
% Pause (in the full version of this script, this would instead be
% a part where some UI elements are shown and later hidden...
pause(1.0);
% Read image file
img = imread('someImage.png');
% Create handle for imshow, and hiding the image for now.
% This is where Matlab decides to modify the figure window,
% so it fits the image rather than staying maximized.
hImshow = imshow(img);
set(hImshow,'Visible','off');
% Show the image
set(hImshow,'Visible','on');
谢谢,克里斯蒂安