필터 지우기
필터 지우기

converting cross sectional slides to vertical section in CT scan images

조회 수: 3 (최근 30일)
Shirin
Shirin 2014년 4월 20일
댓글: Matt J 2014년 4월 20일
I have 76 2D cross sectional slices of CT scan images. I want to generate a vertical section by those slices.
Can somebody please give me an idea or tip about how to do it?
a sample of CT slices:
a sample of what I'm looking for:

채택된 답변

Matt J
Matt J 2014년 4월 20일
Instead of having 76 separate image matrices, you should hold all the slices in an MxNxP array. If A is this array, then you can extract slices along whatever axis you want by indexing
A(:,:,i); %axial
A(:,i,:); %sagittal/coronal
A(i,:,:); %coronal/sagittal
You can also use griddedInterpolant() to interpolate oblique slices.
  댓글 수: 1
Matt J
Matt J 2014년 4월 20일
If the 76 images came from DICOM, you can import to a MATLAB 3D volume using one of several tools on the File Exchange, e.g.,

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Import, Export, and Conversion에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by