필터 지우기
필터 지우기

Botched dicom image after rgb conversion

조회 수: 1 (최근 30일)
Antonio
Antonio 2013년 2월 15일
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