How can I get different 2D views of a 3d medical images which has been saved in 3D matrix?
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi
I have saved a stack of MRI in a 3D matrix (320x320x60). I can see 2d view (saggital) of (xy view) by this command,
imshow(M(:,:,15),[])
for slice number 15 for example. How can I see the othe two views, axial and coronal views (yz,xz)?
Thanks
댓글 수: 0
채택된 답변
KH TOHIDUL ISLAM
2018년 8월 27일
Hi Sara Salimi,
As you have 320x320x60 volume; volume=[320x320x60];
Middle XY Slice will be as:
XY_Slice=volume(:,:,30);
Middle XZ Slice will be as:
XZ_Slice=permute(volume(160,:,:),[2 3 1]);
Middle YZ Slice will be as:
YZ_Slice=permute(volume(:,160,:),[1 3 2]);
Regards,
Tohid
댓글 수: 0
추가 답변 (1개)
Rik
2018년 1월 24일
There are many viewers to be found on the File Exchange. Have a look at the answers to this question.
참고 항목
카테고리
Help Center 및 File Exchange에서 Biomedical Imaging에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!