how can i call parameter from one menu to another menu in GUI?
1 回表示 (過去 30 日間)
古いコメントを表示
Dears,
i need your help... i had designed gui interface composed of five menues. first menu include filters and i need to apply histogram function on filtered image from second menu and the same for other menues.
i need only to know how to call filter method in histogram menu and same for edge and sharpen filters.
i had attached the printscreen of gui interface.
any one have an idea.
with many thanks.
0 件のコメント
回答 (1 件)
Walter Roberson
2016 年 4 月 6 日
Put the important code into a function. Call the function in multiple places.
For example, if button A needs to trigger the action of button B, then put the real work of button B into buttonB_worker and have buttonB_Callback and buttonA_Callback both call buttonB_worker.
1 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!