How do I display a button on a figure which is also showing an image?
2 次查看(过去 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!