Effacer les filtres
Effacer les filtres

Visualizing a DICOM file of multiple frames

5 vues (au cours des 30 derniers jours)
Antonio
Antonio le 20 Jan 2013
I generated this brain tumor via TumorSim and converted it from .mha to .dcm using the gdcm2vtk tool.
I want to visualize it now in Matlab 2012a, I tried this, following the ankle demo (which is based on a single frame dicom file):
info = dicominfo('T1Gad.dcm');
image_data = dicomread('T1Gad.dcm');
imtool(image_data,'DisplayRange',[]);
I get the following errors:
Error using imageDisplayValidateParams>validateCData (line 117)
Unsupported dimension.
Error in imageDisplayValidateParams (line 31)
common_args.CData = validateCData(common_args.CData,image_type);
Error in imtool/addImageToImtool (line 323)
common_args = imageDisplayValidateParams(common_args);
Error in imtool (line 270)
addImageToImtool(varargin{:});
Error in mostrarDicom (line 12)
imtool(image_data,'DisplayRange',[]);

Réponse acceptée

Walter Roberson
Walter Roberson le 20 Jan 2013
What does
size(image_data)
report ?
I suspect that what you are getting from dicomread() is an array of slices, and that you need to display one slice at a time,
imshow(image_data(:,:,1), [])
or else use
implay(image_data)

Plus de réponses (1)

Priyanka Matta
Priyanka Matta le 9 Juin 2021
HI,
I read a DICOM pullback with the size 512x512x1x4235 .
I need to extract all the 4235 frames separately to find where the ROI started during acquisition.

Catégories

En savoir plus sur DICOM Format dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by