Display image in axes Matlab GUI.
Afficher commentaires plus anciens
Hello!
I want to display an image in an axes Matlab GUI. Therefore, I selected an axes and a button to trigger the moment. In the button function I wrote:
myImage = imread('as.jpg');
axes(handles.axes7);
imshow(myImage);
The problem is that the image doesn't cover the all surface of the axes. Is it displayed little in the center of the axes. How can I display my image on entire surface of the axes?
Thank you!
1 commentaire
B.k Sumedha
le 5 Juin 2015
Check the size of the image
Réponse acceptée
Plus de réponses (4)
Image Analyst
le 5 Juin 2015
3 votes
I know you already accepted an answer but I don't think you have to do all that - I never do and my images fill the axes. That would be a nightmare if you had to do that every time.
In my experience, the cause for this behavior is that you set "hold on" on that axes sometime in the past. Then when you go to display the new image, the axes size is sort of "locked" to the size of the image that was in there before you put hold on. To get around this, call "hold off" after you call axes() and before you call imshow(). If even that doesn't fix it, call "cla reset" between axes() and imshow(). That will certainly fix it and restore the axes back to its initial default state, which is to display the images with 'InitialMagnification' as 'fit'.
If even that doesn't fix it (never had this happen before), then you must not have your imshow() preferences set to fit. Look at iptprefs and at the 'ImshowInitialMagnification' setting. It should be set to 'fit'
5 commentaires
Alexandru Vasile
le 5 Juin 2015
Ingrid
le 8 Juin 2015
thanks, was not familiar with this as I also have never had the problem of a figure not fitting the axes, I just copied the code I used to get a figure to fit the full size of a pushbutton and then you do need to do a resizing
Image Analyst
le 11 Avr 2020
You can also use the 'tight' option for border:
imshow(yourImage, 'Border', 'tight');
I think it's a relatively recently added option.
Victoria Odoemelam
le 1 Mar 2021
Good evening all.. please I need to write if statement for images to be displayed if a particular image is read...
dinfo = dir('/MATLAB/toolbox/images/*/*.jpg');
filenames = fullfile({dinfo.folder}, {dinfo.name});
[~, barenames, ~] = cellfun(@fileparts, filenames, 'uniform', 0)
if ismember('cameraman', barenames)
disp('found camerman!');
else
disp('no cameraman');
end
if ismember('flamingos', barenames)
disp('found flamingos');
else
disp('no flamingos')
end
if ismember('lena', barenames)
disp('found lena')
else
disp('no lena')
end
Walter Roberson
le 5 Juin 2015
0 votes
You can pass x and y coordinates to imshow() to indicate where you want the image to be placed in data coordinates. Please read the documentation as the positioning is a little unusual.
3 commentaires
Peter Manley-Cooke
le 6 Mai 2017
I have just read the documentation of imshow and it gives no indication of how to do what you suggest. In what way does the positioning work?
Walter Roberson
le 6 Mai 2017
Modifié(e) : Walter Roberson
le 6 Mai 2017
Peter Manley-Cooke:
These XData and YData are passed by imshow() to image(), so to get the full explanation you need to look there https://www.mathworks.com/help/matlab/ref/image.html#inputarg_x
=== quote ===
- Two-element vector — Use the first element as the location for the center of C(1,1) and the second element as the location for the center of C(m,n), where [m,n] = size(C). If C is a 3-D array, then m and n are the first two dimensions. Evenly distribute the centers of the remaining elements of C between those two points.
The width of each pixel is determined by the expression:
(x(2)-x(1))/(size(C,2)-1)
If x(1) > x(2), then the image is flipped left-right.
- Scalar — Center C(1,1) at this location and each following element one unit apart.
=== end quote ===
Notice the positions are centers of pixels, so if you used whole units then to put the bottom left corner of an image at the origin, you would have to specify the XData and YData as starting from (1/2, 1/2), instead of the more natural specification of (0, 0)
Peter Manley-Cooke
le 6 Mai 2017
Once again, the famous Walter has the answers. Where TMW fail to mention any of this connection which would have been useful. Anyhoo, this works a treat. Thanks Walter.
thinh dang
le 18 Jan 2018
0 votes
i have a problem that the guide work fluently if i run in command window. but if i open the guide(.fic), it doesn't work! help me please! thank you!
1 commentaire
Image Analyst
le 18 Jan 2018
I made a quick launch shortcut that says "guide". Or you can also type guide onto the command line. Clicking on the .fig file in the current folder panel doesn't work. I know it brings up something but it's like a crippled version that doesn't really function, so don't try to launch either your program or the GUIDE interface by double clicking on the fig file. Use the green run triangle either in MATLAB or in GUIDE.
robert arnold
le 7 Mai 2020
0 votes
how can i make the axis automatically adjust to anysize image?
1 commentaire
Image Analyst
le 7 Mai 2020
It does that already, doesn't it? No matter what size image you're trying to show, it will pick a good size for an axes (if you don't already have an active one), and then fit the desired image into it. Please show a screenshot where it was not adjusted automatically properly and say what you'd want it to look like.
Catégories
En savoir plus sur Image Arithmetic dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!