Botched dicom image after rgb conversion

1 次查看(过去 30 天)
I converted a 4D dicom image into rgb like this:
image_data = dicomread('TumorSimOutput2T1Gad.dcm');
rgb4Dimage = image_data(:,:,[1 1 1],:);
index = 45;
imshow (rgb4Dimage(:,:,index),[]);
the image appears botched, like this: http://img51.imageshack.us/img51/6451/botched.png
when this is its proper appearance: http://img707.imageshack.us/img707/5922/fullud.png
How can I correct this?

回答(1 个)

Walter Roberson
Walter Roberson 2013-2-15
imshow(rgb4Dimage(:,:,:,index))

类别

Help CenterFile Exchange 中查找有关 DICOM Format 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by