In subplot, how do I plot all images in same size?

32 次查看(过去 30 天)
Hi,
I'm trying to use subplot to show a ranking of images. I've been trying to understand how to change the code to get all images in the same size when I show then in a figure, but with no success until now.
I've attached my image rankings so you can have an idea. To print that, I read a list of images from a .txt file and then I use a for loop to print each of those.
I would like them to have the same height and width, even if they have different size. Can anybody give me a hint? I've tried a lot of similar examples, but I still didn't understand how to do it. They could be the same size of first image that appears in the ranking.

采纳的回答

Walter Roberson
Walter Roberson 2017-5-9
Use image() to draw the images instead of imshow().
And do not use the
axis image
or
axis equal
commands.
For example,
foo1 = randi(255,20,30,'uint8');
foo2 = randi(255,25,30,'uint8');
subplot(1,2,1); image(foo1)
subplot(1,2,2); image(foo2)
The images will be drawn the same size.
This will typically result in most of the images looking distorted.
  1 个评论
Queila Martins
Queila Martins 2017-5-10
Thank you SO much, Walter! I was really doing wrong things (using axis equal, imshow, etc). I merged your suggested code with set(gca...) and I got exactly what I needed.
Thank you so much again! very helpful!

请先登录,再进行评论。

更多回答(0 个)

标签

Community Treasure Hunt

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

Start Hunting!

Translated by