how to convert .mat file to .dcm file?
3 ビュー (過去 30 日間)
古いコメントを表示
Dear all,
I have the .mat file as attached. Anyone can help me to convert to .dcm file?
0 件のコメント
採用された回答
Simon Chan
2023 年 6 月 5 日
Try the following:
rawdata = load('petnew.mat');
J = permute(rawdata.petnew, [1 2 4 3]);
dicomwrite(J,'yourFile.dcm');
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Convert Image Type についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!