Borrar filtros
Borrar filtros

imshow : add spacing between two images

8 visualizaciones (últimos 30 días)
Moritz P.
Moritz P. el 27 de Ag. de 2015
Comentada: Image Analyst el 25 de Feb. de 2021
Hi, is there a way to add spacing between two images so that they are farther apart?
figure;
imshow([A B],[]);
colormap(winter);
  2 comentarios
K P RAVIKUMAR
K P RAVIKUMAR el 25 de Feb. de 2021
How to provide spacing between the images in monage for multiple images
Image Analyst
Image Analyst el 25 de Feb. de 2021
Basically the same way as in my Answer below. You just need to do it in both directions. There is no montage option for this I don't believe, so if you want it, you'll have to do it manually.

Iniciar sesión para comentar.

Respuestas (1)

Image Analyst
Image Analyst el 27 de Ag. de 2015
Try making a band of zeros
spacer = zeros(rows, columns, 'uint8');
wideMatrix = [A, spacer, B];

Categorías

Más información sobre Display Image 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