how to subplot 4 images?
Ältere Kommentare anzeigen
i've captured 4 images of same scene from different angles and i want to subplot all 4 images but problem is that only two images are subplotted when i subplot the third one it says index exceeds number of subplots ,what it means ? i'm stuck in it plz help
10 Kommentare
Jing
am 12 Mär. 2013
Can you provide the code you used?
Jan
am 12 Mär. 2013
Obviously there is a bug in your code. Without seeing the code, it is impossible to guess where the error is.
This is a general problem in forums: The readers do not have the faintest idea about what you are doing, although it is such obviously for yourself. Therefore a general strategy is to write the question, sit back and remember the holiday at the beach. Then read the question again and imagine, whether a reader could have enough information to reconsider the problem.
Mehreen Hussain
am 13 Mär. 2013
Mehreen Hussain
am 13 Mär. 2013
Algorithms Analyst
am 13 Mär. 2013
you need to make indexing for plotting them.......
Mehreen Hussain
am 14 Mär. 2013
Jan
am 14 Mär. 2013
@Mehreen: What about Sean's answers? I do not think, that there is a beeter solution. If you need something else, please explain this in detail.
Mehreen Hussain
am 20 Mär. 2013
Walter Roberson
am 20 Mär. 2013
for ii = 1:4
subplot(2,2,ii);
imshow(rand(200,300));
end
Different images for each subplot.
Mehreen Hussain
am 20 Mär. 2013
Antworten (1)
Sean de Wolski
am 12 Mär. 2013
figure;
for ii = 1:4
subplot(2,2,ii);
imshow('cameraman.tif');
end
2 Kommentare
Jan
am 14 Mär. 2013
+1, I'd prefer image instead of imshow.
Sean de Wolski
am 14 Mär. 2013
@Jan, why?
Other than for just preallicating an image into existence (i.e. image(1)); I've never really found much other use for image. imshow does all of the meta stuff that I expect with an image for free.
Kategorien
Mehr zu Images finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!