How to view jpeg image like can scroll
Mostrar comentarios más antiguos
Hi all,
If I have 10 images jpeg format, how can i view my image like can scroll. Not in subplot.
Respuesta aceptada
Más respuestas (2)
Walter Roberson
el 22 de Sept. de 2021
0 votos
You can use montage() to display multiple images, or you can use the XData and YData parameters in image() to put the images at different coordinates of the same axes
sir, just as the answers, may by use
clc;
clear all;
close all;
for i = 1 : 10
ims{i} = imread('cameraman.tif');
end
montage(ims, 'Size', [2 5], 'BackgroundColor', 'w', 'BorderSize', [3 3])
Categorías
Más información sobre Images en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
