How do I display a button on a figure which is also showing an image?
1 回表示 (過去 30 日間)
古いコメントを表示
I want to display an image using imshow, and have a button next to the image that performs some calculation.
I = imread('path/to/image.jpg')
I think the uibutton command requires the input to be a uifigure, which I is not.
0 件のコメント
回答 (1 件)
Walter Roberson
2023 年 4 月 11 日
編集済み: Walter Roberson
2023 年 4 月 11 日
h = uicontrol('style', 'push', ...
'Position', [x y width height], ...
'String', 'Push Me', ...
'Callback', @Function_To_Invoke_When_Button_Is_Clicked)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!