Display multiple slices of a Dicom file
5 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (2 件)
Mahesh Taparia
2020 年 1 月 13 日
Hi,
You can also display the image using 'volshow' function. For example:
x=yourData(:,:,447:457);
volshow(x)
0 件のコメント
Kritika Bansal
2020 年 1 月 13 日
Hi,
You can possibly use the following function from File Exchange to do so:
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!