Passing an image between GUIDE GUI's
1 次查看(过去 30 天)
显示 更早的评论
Hi, I am trying to pass an image between GUIDE GUI's and have read the various articles - and thought it was straight forward.
I prefer the setappdata / getappdata approach.
My two GUIS have had their "Tag" properties renamed GUI1 & GUI2.
This is my code taking an image from an axes component from GUI1 and trying to display it on an axes component on GUI2.
In a pushbutton call back on GUI 1:
IM=double(getimage(handles.axes1))
setappdata(handles.GUI1,'IM',IM)
GUI2 % This invokes GUI2
And then in the openingFCN on GUI2
IM=getappdata(handles.GUI2,'IM')
axes(handles.axes1)
imshow(IM)
But the IM variable is empty
IM =
[]
2 个评论
Jan
2018-2-6
Storing data in the ApplicationData of the root object has the same disadvantages as other methods to create global variables. This is not a smart idea for sharing data.
回答(1 个)
Jan
2018-2-6
编辑:Jan
2019-2-14
Do not use global variables to share data. You find thousands of threads concerning Matlab or other programming languages, which explain the severe problems. A direct sharing is much better:
% File: GUI1.m -----------------------------------------
function GUI1
handles.FigH = figure('Tag', 'GUI1');
handles.AxesH = axes;
guidata(handles.FigH, handles);
end
% File: GUI2.m -----------------------------------------
function GUI2
handles.FigH = figure('Tag', 'GUI2');
handles.ButtonH = uicontrol('Style', 'PushButton', 'Callback', @ButtonCB);
guidata(handles.FigH, handles);
end
function ButtonCB(ButtonH, EventData)
handlesGUI2 = guidata(ButtonH); % Not needed here
data = rand(100, 100);
GUI1H = findobj(allchild(groot), 'flat', 'Tag', 'GUI1');
handlesGUI1 = guidata(GUI1H);
image(data, 'Parent', handlesGUI1.AxesH);
end
Now the pressing the button in the 2nd GUI searches GUI1 at first and creates an image in its axes. You can do everything you want from inside the GUI2 callback, if you get the handles of the GUI1 at first.
It is more efficient to search "GUI1" once only during the creation of GUI2:
function GUI2
handles.FigH = figure('Tag', 'GUI2');
handles.ButtonH = uicontrol('Style', 'PushButton', 'Callback', @ButtonCB);
handles.GUI1H = findobj(allchild(groot), 'flat', 'Tag', 'GUI1');
guidata(handles.FigH, handles);
end
function ButtonCB(ButtonH, EventData)
handlesGUI2 = guidata(ButtonH); % Not needed here
data = rand(100, 100);
GUI1H = handles.GUI1H;
...
This works also if you use GUIDE. Then the 3rd argument handles is provided as input already and you do not have to obtain it by guidata.
5 个评论
Jan
2019-3-13
@Shoaib Bilal: The code works with programmatically created GUIs as well as with GUIDE. Remember, that GUIDE creates a Figure and the code for the callbacks, while a programmatic approach creates the Figure dynamically - this is reall equivalent. Even if the functions are created by GUIDE, you can insert the suggested code.
"because its not working for my gui" - Then there is a programming error in your code. Please open a new thread and post your code together with a description of the problem. Then the forum will help you to fix the error.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Migrate GUIDE Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!