4D dicom matrix? Why not 3D?
Mostrar comentarios más antiguos
I converted a mha file to dicom format (and got this file: https://www.dropbox.com/s/i0cr2910ie4k5zy/TumorSimOutput2_T1.dcm ) via a Linux utility program (this one: http://manpages.ubuntu.com/manpages/lucid/man1/gdcm2vtk.1.html ) and visualize it via imshow using threedimensional indexing:
imshow(image_data(:,:,index),'DisplayRange',[]);
when I examine the dimensions of image_data I get:
256 256 1 181
I don't understand the purpose of this dimension of 1 element and why isn't required to specify it via imshow. Is this the gray level intensity? How can I check that?
Respuesta aceptada
Más respuestas (1)
ChristianW
el 8 de Feb. de 2013
Editada: ChristianW
el 8 de Feb. de 2013
"Is this the gray level intensity?" - Yes, color reserved dimensions.
It's mostly not about the gray scale. These values just reference to a color in the colormap.
[X, map] = dicomread('US-PAL-8-10x-echo.dcm');
montage(X, map, 'Size', [2 5]);
Categorías
Más información sobre DICOM Format en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!