Display multiple slices of a Dicom file
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
hello,
I have a CT medical image file of size 512*512*624. I want to display some slices (say. from slice 447 to 457) in a subplot or in seperate figures, what can i do?
2 commentaires
Réponses (2)
Mahesh Taparia
le 13 Jan 2020
Hi,
You can also display the image using 'volshow' function. For example:
x=yourData(:,:,447:457);
volshow(x)
0 commentaires
Kritika Bansal
le 13 Jan 2020
Hi,
You can possibly use the following function from File Exchange to do so:
0 commentaires
Voir également
Catégories
En savoir plus sur DICOM Format 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!