Botched dicom image after rgb conversion

1 view (last 30 days)
Antonio
Antonio on 15 Feb 2013
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?

Answers (1)

Walter Roberson
Walter Roberson on 15 Feb 2013
imshow(rgb4Dimage(:,:,:,index))

Categories

Find more on DICOM Format in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!