How do I combine two images of different sizes?

8 visualizaciones (últimos 30 días)
Aliyu Abdu
Aliyu Abdu el 21 de Abr. de 2012
I have a small picture image that I want combine with a larger one,just like sticking them together. Re-sizing and adding them didn't work because the smaller one gets stretched too much when I re-sized it to size of the larger one,and the opposite when I tried re-sizing the larger one to the size of the smaller one. Can anyone help?

Respuesta aceptada

Walter Roberson
Walter Roberson el 21 de Abr. de 2012
You want the two images to be adjacent to each other in their different sizes? Or you want them to be adjacent but the same size as each other? Or you want to mix together the images like by transparency? Or you want to replace part of the first image by the second image?
If you want the two images to be adjacent to each other in their different sizes, then pad the edge of the first matrix with a band of as many zeros as matches the size of the second image, and then store the second image into the appropriate place in those zeros. Though you might have to use some value other than 0 (e.g., you might want the empty space to be white.)
  3 comentarios
Walter Roberson
Walter Roberson el 21 de Abr. de 2012
sb = size(BiggerImage);
ss = size(SmallerImage);
BiggerImage(1,end+ss(2),1) = 0; %extend image
BiggerImage(1:ss(1), sb(2):sb(2)+ss(2)-1, :) = SmallerImage;
Aliyu Abdu
Aliyu Abdu el 21 de Abr. de 2012
Thanks so much!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by