필터 지우기
필터 지우기

How to construct axial and coronnal slices from sagittal?

조회 수: 9 (최근 30일)
jiyo
jiyo 2014년 2월 28일
댓글: jiyo 2014년 3월 13일
I have created a 3D mat file by stacking sagittal slices in a matrix called Slice [512 x 512 x 25]. Now i need to extract the axial and coronnal views from it. I was able to get the axial view using the following code.
axial_slice=slice(250,:,:);
axial_slice=squeeze(axial_slice);
Tform1 = maketform('affine',[0 -2.5; 1 0; 0 0]);
Resample1 = makeresampler({'cubic','nearest'},'fill');
final1 = imtransform(axial_slice,Tform1,Resample1);
figure;
imshow(final1',[]);
title('Axial- IMTRANSFORM')
But for the coronnal view i'm unable to find the affine transform. I referred the matlab eg for mri dataset but that did not work out. please throw some light.
  댓글 수: 1
jiyo
jiyo 2014년 3월 13일
Please help me out in constructing the coronal slice!

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

답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by