필터 지우기
필터 지우기

Displaying dicom images

조회 수: 2 (최근 30일)
Usama Javed
Usama Javed 2011년 12월 30일
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... ???

채택된 답변

Chandra Kurniawan
Chandra Kurniawan 2011년 12월 30일
Hello,
Try to use imshow(I,[])
or montage(I, 'DisplayRange', []);
  댓글 수: 4
Chandra Kurniawan
Chandra Kurniawan 2011년 12월 30일
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
Usama Javed
Usama Javed 2011년 12월 30일
i think its the problem of memory...
if i am applying this on 700 images than it works...

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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