How do I prevent the deformation of an image in the axes?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Youri Miessen
am 19 Dez. 2017
Kommentiert: Image Analyst
am 19 Dez. 2017
I am using the imread() and image() functions to read and display the image, but it keeps deforming the image because the axes size (square) hasn't the same dimensions as the image. It is important that I use axes for other functions.
This is the code I already have:
if true
[filename,pathname] = uigetfile({'*.jpg';'*.JPEG';'*.GIF';'*.png'}, 'File selector');
image(imread([pathname filename]));
end
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/167877/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/167885/image.png)
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 19 Dez. 2017
Try
axis equal
2 Kommentare
Image Analyst
am 19 Dez. 2017
OK, if you've got the solution, then can you please "Accept this answer"?
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!