Botched dicom image after rgb conversion
Show older comments
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),[]);
How can I correct this?
Answers (1)
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!