Borrar filtros
Borrar filtros

multiple image in one GUI axes

3 visualizaciones (últimos 30 días)
Ahmad
Ahmad el 24 de Jun. de 2016
Respondida: Image Analyst el 26 de Jun. de 2016
Hello, I want to display multiple image in one axes in GUI in for loop. I have 9 image and i wand show them in one axes. I used this code but it doesnt work. can anyone help ? Thanks
k=1;
axes(handles.axes2)
for i=1:3
for j=1:3
subplot(3,3,k);
imshow(testimages(:,:,missimages(k)));
k=k+1;
end
end
  3 comentarios
Geoff Hayes
Geoff Hayes el 25 de Jun. de 2016
Ahmad - the above code will create nine subplots within the figure. So there will be nine axes and not one. Please clarify exactly what you are trying to do.
Ahmad
Ahmad el 26 de Jun. de 2016
Geoff Hayes, You're right. That is exactly happened when i want to plot these 9 axes in a figure. But i am working on GUI and i want this whole figure (or 9 axes) appear in GUI.
i want these 9 axes shown in this GUI
by clicking 'Show 50 first failed predictions' button . What handle should i use? axes or uipanel or ???
And sorry for my poor English . Thanks

Iniciar sesión para comentar.

Respuestas (2)

Image Analyst
Image Analyst el 26 de Jun. de 2016
Just save them to disk and use montage() to make a new image where all the others are stitched together. Or see the "Stitch" program: http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A58030
  2 comentarios
Ahmad
Ahmad el 26 de Jun. de 2016
But i have to write some titles and description for them. anyway thanks for your help.
Image Analyst
Image Analyst el 26 de Jun. de 2016
So? You can still do that.

Iniciar sesión para comentar.


Image Analyst
Image Analyst el 26 de Jun. de 2016

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by