How to view image as axial?

3 visualizaciones (últimos 30 días)
mohd akmal masud
mohd akmal masud el 25 de Abr. de 2022
Respondida: Pratyush Swain el 17 de Nov. de 2023
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)

Respuestas (1)

Pratyush Swain
Pratyush Swain el 17 de Nov. de 2023
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.

Categorías

Más información sobre Images en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by