Dicom image stacking problem
4 ビュー (過去 30 日間)
古いコメントを表示
i stacked 381 dicom images but they satcked in MxN format and when i try to show , error occurs and tells it should be in MxNx3 format. Is my stacked images format is wrong then what is the correct way to do it and if correct can i proceed with MxN format?
0 件のコメント
回答 (1 件)
Selva Karna
2020 年 1 月 8 日
Deepa, Use following command to view your dicom slides:
DCM=M X N X1000
volshow(DCM)
1 件のコメント
Walter Roberson
2020 年 1 月 8 日
Use something like
DCM = cat(3, CellArrayOfImages{:});
to do the stacking.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!