How to open image in a new window if it is bigger than my axes in Matlab Gui
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
my image is larger than the space allocated for the axes, i want two additional full-size figure windows showing the before and after images created please help really new to matlab.
0 commentaires
Réponses (1)
Sai Sri Pathuri
le 5 Mai 2020
You may add figure command before displaying the images.
figure
% code to display the first image
imshow(image1)
figure
% code to display the second image
imshow(image2)
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!