Call to Main GUi

1 次查看(过去 30 天)
Elysi Cochin
Elysi Cochin 2013-3-4
i have 3 gui in my project named "MainGUI" and "Sub1GUi" and "Sub2GUi".... in SubGUi i have a button.... on click of that button i want one output to get displayed in the MainGUI axes2... how to call MainGUI and display image in MainGUI's axes2... is this possible... please do reply....

采纳的回答

Jan
Jan 2013-3-4
This is an evergreen question. Please search for "sharing GUI" in this forum to find a bunch of solutions.
The object you have to share is the handle of the AXES object you want to plot in. So get the MainGUI's handle from the SubGUI, use it to obtain the handles struct by GUIDATA, and plot from the code of the SubGUI using the AXES' handle as 'Parent' property.
  4 个评论
Elysi Cochin
Elysi Cochin 2013-3-5
sir i tried many ways....but not getting it.... please do reply....
Jan
Jan 2013-3-5
What could I reply? "Nothing is displayed" does not contain enough information to suggest an improvement. I do not expect than "guihandles(MainFile)" does, what you want, but as long as I do not know the contents of MainFile, this is a pure guessing. In addition you obtain h, but use handles afterwards. You need the handle of the MainGUI. I do not know, if you provide it, when the subGUI is created or if you can identify the mainGUI by its tag. But if you have the handle:
mainHandles = guidata(MainGUIH);
axes(mainHandles.axes1);
imshow(I);

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Just for fun 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by