here are the two images I want to club
How to club different images together?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Mohammad Bhat
el 18 de Nov. de 2017
Editada: Bshara Murr
el 18 de Nov. de 2017
Hi,
I have two images, one binary image and second color image, as shown below.I want to superimpose colour image on binary image.How can we do that.?
Respuesta aceptada
Bshara Murr
el 18 de Nov. de 2017
Have you tried imfuse?? however imfuse will change the dimensions of the smaller image and ruin the colors of your image. You can also try this:
I = imread('kouser.jpg');
II = imread('marifat.jpg');
[rows, columns, color bands] = size(I); %or II (the image you want on top)
II(1:1+rows,1:1+columns,:) = I;
You must make sure that the image you want to put on top is of the same dimensions or smaller than the one in the "background"
2 comentarios
Bshara Murr
el 18 de Nov. de 2017
Editada: Bshara Murr
el 18 de Nov. de 2017
I am not sure i understood the second part of your question can you explain more
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!