How to display very clearly CT image in Mathlab?Any suggestion?

I tried to use imshow but did not display clearly CT image attached so I tried imagesc, it is better but also not satisfying. I read many answers to similar question but did not get the point. Appreciate the help.
info = dicominfo('C:\Users\Mohammed Ajam\Desktop\CT01163NO.dcm');
I = dicomread(info);
h=imhist(I);
figure,plot(h);
max1=double(max(I(:)));
min1=double(min(I(:)));
figure,imagesc(I,[-1300 1300]);
colormap(gray)

댓글 수: 4

Why do you determine max1, min1 and do not use it? What do you see and what would be "satisfying"?
Thanks for reply. I used them first but could not see any details of image it is almost gray color inside brain so I started to change the values to be -1300 to 1300 it is better but still not clear.
Which values do you get for max1 and min1? Can you post a screenshot of the histogram? I cannot download and process the data by my own currently.
This is the histogram. Thanks in advance.

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

답변 (1개)

jonas
jonas 2018년 11월 8일
편집: jonas 2018년 11월 8일
Perhaps this will solve your problem,
imshow(I,[])

카테고리

도움말 센터File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

질문:

2018년 11월 5일

댓글:

2018년 11월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by