combining number of images using matlab

2 Ansichten (letzte 30 Tage)
Safaa
Safaa am 26 Aug. 2012
Hi all:
I am trying to combine number of images in matlab. The number of combined images is up to four .I want them to be combined based on the concept of layers (as in photoshop) not to be concatenated together. This means that the size of the resulted image will be the same as the size of each combined image. Is there a matlab function that does that task properly?
Regards
Safaa

Antworten (3)

Ashish Uthama
Ashish Uthama am 27 Aug. 2012
You could look at imfuse and see if it helps combine two images at a time.

Ryan
Ryan am 26 Aug. 2012
See the Matlab FAQ.

Image Analyst
Image Analyst am 26 Aug. 2012
You can read in each image and stick it into one plane (layer) of a 3 dimensional image.
layersImage = cat(3, image1, image2, image3, image4);
  1 Kommentar
Safaa
Safaa am 28 Aug. 2012
Actually I did that but it did not work.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by