Why does imshow display different image when I try to show a CT image?

조회 수: 2 (최근 30일)
S C.Carl
S C.Carl 2023년 5월 13일
편집: DGM 2023년 5월 14일
Hi,
I want to show an original abdominal CT (Computed Tomography) image (which is uint16 bit ) with these codes;
im = imread('Slice_87.png');
imshow(im);
The original image and the figure shown by the above command are different.
For instance, the figure shown by the above command has a grayscale background. However, the background in the original image seems as black when I open it with ImageJ or paint.
Why are they different?.
How can I show the CT image as it is seen by ImageJ or paint?

답변 (1개)

KALYAN ACHARJYA
KALYAN ACHARJYA 2023년 5월 13일
Can you try this way-
[img,map] = imread('Slice_87.png');
imshow(img,map);
  댓글 수: 9
Simon Chan
Simon Chan 2023년 5월 14일
One possible way is use function getframe as follows:
I=imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1382669/wholeCTgray_87.png');
mask = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1382664/MASK_87.png');
outpict3 = im2double(mask).*im2double(I);
outpict3 = im2uint16(outpict3); % Your original image is uint16
[minValue,maxValue] = bounds(outpict3(outpict3~=0));
imshow(outpict3,[minValue,maxValue]);
F = getframe(gca);
imwrite(F.cdata,'ScreenCapture.png');
DGM
DGM 2023년 5월 14일
편집: DGM 2023년 5월 14일
Use mat2gray() to do the normalization instead of relying on figure capture and all the problems that causes.
I=imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1382669/wholeCTgray_87.png');
mask = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1382664/MASK_87.png');
outpict3 = im2double(mask).*im2double(I); % multiply
[minValue,maxValue] = bounds(outpict3(outpict3~=0)); % get data range
outpict3 = mat2gray(outpict3,[minValue,maxValue]); % normalize to extrema
outpict3 = im2uint16(outpict3); % Your original image is uint16
imshow(outpict3); % now it's scaled as expected
imwrite(outpict3,'ScreenCapture.png');

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

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by