how can i call parameter from one menu to another menu in GUI?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (1)
Walter Roberson
am 6 Apr. 2016
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 Kommentar
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!