![untitled.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/254585/untitled.png)
Error in the medical image display
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Sakshi Ahuja
le 14 Déc 2019
Commenté : Sakshi Ahuja
le 16 Déc 2019
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
0 commentaires
Réponse acceptée
Akira Agata
le 16 Déc 2019
How about the following?
imshow(T_1,[]);
In addition, I believe the line 'T_1 = squeeze(C);' can be deleted.
![untitled.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/254585/untitled.png)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!