To display an image
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I want to display images from a for loop. Whenever i write imagesc() drawnow; I do get the images but they are scaled. I donot want the scaled images. When I am using imshow instead of imagesc then it gives just blank figure? How could i view those images without being scaled?
1 comentario
Walter Roberson
el 2 de Sept. de 2012
When you say "scaled" are you referring to size or to color range?
What is size() of your image (please show all values returned by size()) ? What is class() of your image?
What is max(YourImage(:)) and min(YourImage(:)), where here YourImage is your variable name ?
Respuesta aceptada
Image Analyst
el 2 de Sept. de 2012
Editada: Image Analyst
el 2 de Sept. de 2012
Try this:
imshow(yourImage, []); % Make sure you use the [].
It should work with everything (all 2D images): uint8,uint16, single, double, and RGB. The [] will take the min of the image and map it to 0 and the max and map it to 255 so that you will see the entire range of your image. If you don't do that, and the image is uint8 then it defaults to 0-255 and if your image is, say, all less than 5 gray levels, or a floating point image with really small values, then you won't see anything - it will be too dark.
0 comentarios
Más respuestas (1)
Star Strider
el 2 de Sept. de 2012
I suggest image rather than imagesc if you do not want them scaled.
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!