"imshow" distorts jpeg

12 visualizaciones (últimos 30 días)
Matt
Matt el 15 de En. de 2013
Editada: Walter Roberson el 27 de Abr. de 2017
I am using the following code to display an image on an axis in a Matlab GUI.
axes(handles.axis1);
imshow('my_image.jpg');
This is distorting my image. (There is text on the image which becomes difficult to read). However it seems that Matlab is trying to keep the dimension ratio, because stretching the axis in one direction does not change the output of imshow at all.
I have tried using XData and YData to manually resize the jpeg, with limited success. If I open the jpeg directly, it looks perfect, so it must be something Matlab is doing.
Does anyone have any suggestions? I don't really have a firm grasp on what Matlab is doing when I call the imshow function, so please point out of I'm completely off-base. Thanks.
-Matt
  2 comentarios
Walter Roberson
Walter Roberson el 15 de En. de 2013
Are you being given a warning about the image being too large to view?
Matt
Matt el 15 de En. de 2013
Thanks for the reply. There is no warning.

Iniciar sesión para comentar.

Respuesta aceptada

Image Analyst
Image Analyst el 15 de En. de 2013
It "shrinks to fit" the image into your axes. This means that it might subsample your image and lose some pixels, causing it to look bad. Try using a bigger axes, or maybe you can play around with the 'InitialMagnification' option for imshow(), or try using zoom().

Más respuestas (2)

Jurgen
Jurgen el 15 de En. de 2013
Are you displaying at the proper size? fine detail can be lost (aliasing) if your display size is too small, try maximizing it with e.g.:
figure;imshow('my_image.jpg')
  2 comentarios
Matt
Matt el 15 de En. de 2013
I tried this but it created a new figure. I want the image to appear in an axis that is on my GUI. Although, the image displayed in the new figure window did NOT seem to be distorted, so perhaps you're on to something.
Jurgen
Jurgen el 15 de En. de 2013
Yes obviously the new figure was because I thought your axis was too small. Just a test, guess it was right.

Iniciar sesión para comentar.


vcmorini
vcmorini el 27 de Abr. de 2017
This link might be usefull: Resolving Low-Level Graphics Issues

Categorías

Más información sobre Environment and Settings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by