필터 지우기
필터 지우기

series of images as one 3D images

조회 수: 5 (최근 30일)
Soum
Soum 2013년 7월 2일
댓글: Image Analyst 2020년 7월 18일
Hi; My Question is about how can I collect my images as one image to work on it like 3D image knowing that I have 9 images .tiff I want to make them one image .tiff that contains all of them Thanks in advanced

채택된 답변

Image Analyst
Image Analyst 2013년 7월 2일
Read in the 9 images with imread.
image1 = imread('image1.tif');
image2 = imread('image2.tif');
image3 = imread('image3.tif');
image4 = imread('image4.tif');
image5 = imread('image5.tif');
image6 = imread('image6.tif');
image7 = imread('image7.tif');
image8 = imread('image8.tif');
image9 = imread('image9.tif');
Then concatenate:
image3D = cat(3, image1, image2, image3, image4, image5, image6, image7, image8, image9);
  댓글 수: 4
SojM
SojM 2020년 7월 18일
How to plot them as 3D volume after concatenating?
Image Analyst
Image Analyst 2020년 7월 18일
You can try a program like Avizo. Otherwise if you use MATLAB you are pretty much limited to isosurfaces and cutaway views. See the Volume Viewer app on the Apps tab of the tool ribbon.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by