Azzera filtri
Azzera filtri

Call to Main GUi

1 visualizzazione (ultimi 30 giorni)
Elysi Cochin
Elysi Cochin il 4 Mar 2013
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....

Risposta accettata

Jan
Jan il 4 Mar 2013
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 Commenti
Elysi Cochin
Elysi Cochin il 5 Mar 2013
sir i tried many ways....but not getting it.... please do reply....
Jan
Jan il 5 Mar 2013
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);

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Just for fun in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by