How to display very clearly CT image in Mathlab?Any suggestion?
Show older comments
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 Comments
Jan
on 7 Nov 2018
Why do you determine max1, min1 and do not use it? What do you see and what would be "satisfying"?
Mohamad Ajam
on 7 Nov 2018
Jan
on 8 Nov 2018
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.
Mohamad Ajam
on 8 Nov 2018
Answers (1)
Categories
Find more on Image Processing Toolbox 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!