Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Generating the plots on the same figure using image command.

1 Ansicht (letzte 30 Tage)
Phenomenal One
Phenomenal One am 23 Mär. 2019
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
I am generating the plots using image command in matlab that is image(x,y,Z). Unlike plot command which we can do a "hold on" to generate the plots on the same figure, it seems we cannot do with the image command.
I am running a loop in which every loop generates a figure from the image command, I want to generate the plots on the same figure(using the image command), any help?

Antworten (2)

Image Analyst
Image Analyst am 23 Mär. 2019
Use subplot if you want separate plots in an array
for k = 1 : 20
subplot(4, 5, k);
imshow(..............
end
  9 Kommentare
Image Analyst
Image Analyst am 24 Mär. 2019
How are you creating the bitmapped RGB images, that you then go on to display with image() or imshow()?
Phenomenal One
Phenomenal One am 25 Mär. 2019
Sorry, but that was just an example of how three different plots are there in single figure. I want to do the same witht the image command

Walter Roberson
Walter Roberson am 25 Mär. 2019
image() is fine to draw additional images in an axes when "hold on" is in effect.
Remember, though, that by default if you do not pass image() x, y data, or XData YData parameters, then image() is going to assume [1, number of columns] and [1, number of rows] as the XData and YData -- each pixel being one data unit. If your second image is the same size or later than the original image, then it is going to cover the original up completely -- unless, that is, that the newer image happens to have AlphaData set so that it is transparent in places.
im = imread('cameraman.tif');
image(im);
colormap(gray)
hold on
image([64 128], [64 128], img);
hold off
and observe that there is a smaller image overlayed on top of the first image. (Smaller because x y coordinates specified told it where the corners were to draw the image at.)
Remember, images are opaque by default, so you cannot see anything underneath an image unless you tell MATLAB to make the image transparent.

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by