フィルターのクリア

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 Center および File ExchangeJust for fun についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by