combining number of images using matlab

조회 수: 2 (최근 30일)
Safaa
Safaa 2012년 8월 26일
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

답변 (3개)

Ashish Uthama
Ashish Uthama 2012년 8월 27일
You could look at imfuse and see if it helps combine two images at a time.
  댓글 수: 1
Safaa
Safaa 2012년 8월 28일
I will check this function, thanks.

댓글을 달려면 로그인하십시오.


Ryan
Ryan 2012년 8월 26일
See the Matlab FAQ.

Image Analyst
Image Analyst 2012년 8월 26일
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
Safaa
Safaa 2012년 8월 28일
Actually I did that but it did not work.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by