필터 지우기
필터 지우기

Error in the medical image display

조회 수: 1 (최근 30일)
Sakshi Ahuja
Sakshi Ahuja 2019년 12월 14일
댓글: Sakshi Ahuja 2019년 12월 16일
I am having an image stored in structure array(attached). When I am trying to display the image it is not coming properly (attached). Code used:
V = 2225:1:2225;
N = numel(V);
for kk = 1:N
F = sprintf('%d.mat',V(kk));
S = load(F);
C= S.cjdata.image;
T_1 = squeeze(C);
imshow(T_1);
end

채택된 답변

Akira Agata
Akira Agata 2019년 12월 16일
How about the following?
imshow(T_1,[]);
In addition, I believe the line 'T_1 = squeeze(C);' can be deleted.
untitled.png
  댓글 수: 1
Sakshi Ahuja
Sakshi Ahuja 2019년 12월 16일
This resolved my issue and one more solution to this:
T_1=mat2gray(C);
imshow(T_1)
'T_1 = squeeze(C) is deleted.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by