How to view image as axial?

3 ビュー (過去 30 日間)
mohd akmal masud
mohd akmal masud 2022 年 4 月 25 日
回答済み: Pratyush Swain 2023 年 11 月 17 日
Dear all,
I have image SPECTCTLD_EM001_DS.dcm as attached. when I open it, the view as longitidunal.
How to view as axial as example attached. ? Im using imshow3D function as attached.
%% Read main set data
clc
clear all
close all
[spect map]=dicomread('SPECTCTLD_EM001_DS.dcm');
spect=(squeeze(spect));%smooth3
aa=size(spect);aa=aa(3);
figure, imshow3D(spect)

回答 (1 件)

Pratyush Swain
Pratyush Swain 2023 年 11 月 17 日
Hi mohd akmal masud,
I understand you want to view the dicom images axially. You can use the 'imshow3dfull' function instead of 'imshow3d' function to attain the required functionality as it allows axial(A),saggital(S) and coronal(C) views.
You may find a documentation on the function here:
Please find the following example that shows how to use the function:
[X,map] = dicomread("US-PAL-8-10x-echo.dcm");
X=squeeze(X);
figure, imshow3Dfull(X)
For more information on the 'dicomread' function, please refer the following link: https://www.mathworks.com/help/images/ref/dicomread.html
Hope this helps.

カテゴリ

Help Center および File ExchangeImages についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by