Displaying dicom images
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
hi, i am loading dicom images with dicomread command, and it goes fine. but when i perform imshow or imtool to that image, it shows a gray image. there is patient data and figure of lungs on that dicom image, but when i perform imshow or imtool it shows that gray image... so is there any solution to get that original image... ???
0 comentarios
Respuesta aceptada
Chandra Kurniawan
el 30 de Dic. de 2011
Hello,
Try to use imshow(I,[])
or montage(I, 'DisplayRange', []);
4 comentarios
Chandra Kurniawan
el 30 de Dic. de 2011
Hi,
It works on my machine. And no error found
dicomlist = dir(fullfile(pwd,'Images','*.dcm'));
for cnt = 1 : numel(dicomlist)
I{cnt} = dicomread(fullfile(pwd,'Images',dicomlist(cnt).name));
end
for num = 1: numel(dicomlist)
K{num} = medfilt2(I{num});
figure, imshow(K{num},[]);
end
Más respuestas (0)
Ver también
Categorías
Más información sobre DICOM Format en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!