我做了一个gui,我有一个代码(感谢Amro),它向我展示了一个gif文件。
我想在'hAxes'中显示这个gif文件,直到gui关闭(用另一个uicontrol显示)。
我有一个包含200张图片的文件夹(image1.jpg,image2.jpg ... image200.jpg),我会对这些图片执行一些操作(在loading1 uicontrol中)。
我试着像:
hFigure = figure('units','pixels','position',[300 300 424 470],'menubar','none',...
'name','start processing','numbertitle','off','resize','off');
hAxes = axes('Parent',hFigure,'Units','pixels','Position',[0 112 424 359]);
%%这是Amro为展示gif文件而做的
fname = 'loading.gif';
%# read all GIF frames**
info = imfinfo(fname, 'gif');
delay = ( info(1).DelayTime ) / 100;
[img,map] = imread(fname, 'gif', 'frames','all');
[imgH,imgW,~,numFrames] = size(img);
hImg = imshow(img(:,:,:,1), map, 'Parent',hAxes);
pause(delay)
%# loop over frames continuously
counter = 1;
while ishandle(hImg)
%# increment counter circularly
counter = rem(counter, numFrames) + 1;
%# update frame
set(hImg, 'CData',img(:,:,:,counter))
%# update colormap
n = max(max( img(:,:,:,counter) ));
colormap( info(counter).ColorTable(1:n,:) )
%# pause for the specified delay
pause(delay)
end
%%,这是我的其余代码:
set(hAxes,'Visible','off', 'handlevisibility', 'off');
%% loading1 shows a data
loading1 = uicontrol('style','text','unit','pix','position',[0 72 424 40],...
'backgroundcolor','r','fontsize',20);
for i=1:200
image = horzcat('now processing ', 'image', num2str(i), '.jpg of 200 images')
set(loading1,'string',image);
drawnow;
end
但是这段代码不起作用:在这段代码中,gui显示了hAxes(gif文件工作正常),但是gui没有显示loading1 uicontrol。我希望他同时显示(hAxes和loading1)
所以我的意思是我希望gui向我展示gif文件和'loading1'uicontrol两者。 我认为'loading1'不起作用,因为代码中的'while'显示了gif文件。
这就是我得到的:
这就是我想要的:
然后:
然后:
等...
答案 0 :(得分:1)
我认为uicontrol
没有出现,因为它是在处理gif图像的连续循环之后调用的,因此只有在你关闭图形的那一刻才会调用它。
在循环之前使用您的代码并创建uicontrol
,它似乎按预期工作。
hFigure=figure('units','pixels',...
'position',[300 300 424 470],...
'menubar','none',...
'name','start processing',...
'numbertitle','off',...
'resize','off');
hAxes=axes('Parent',hFigure,...
'Units','pixels',...
'Position',[0 112 424 359]);
% loading1 shows a data
loading1=uicontrol('parent',hFigure,...
'style','text',...
'unit','pix',...
'position',[0 72 424 40],...
'backgroundcolor','r',...
'fontsize',20);
set(loading1,'string','now loading file 1 of 3');
filename='gif.gif';
% read all GIF frames
info=imfinfo(filename,'gif');
delay=(info(1).DelayTime)/100;
[img map]=imread(filename,'gif','frames','all');
[imgH imgW void numFrames]=size(img);
hImg=imshow(img(:,:,:,1),map,'Parent',hAxes);
pause(delay);
% loop over frames continuously
counter=1;
while(ishandle(hImg))
% increment counter circularly
counter=rem(counter,numFrames)+1;
% update frame
set(hImg,'CData',img(:,:,:,counter));
% update colormap
n=max(max(img(:,:,:,counter)));
colormap(info(counter).ColorTable(1:n,:));
% pause for the specified delay
pause(delay);
end