how to convert .mat file to .dcm file?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
mohd akmal masud
il 5 Giu 2023
Commentato: mohd akmal masud
il 5 Giu 2023
Dear all,
I have the .mat file as attached. Anyone can help me to convert to .dcm file?
0 Commenti
Risposta accettata
Simon Chan
il 5 Giu 2023
Try the following:
rawdata = load('petnew.mat');
J = permute(rawdata.petnew, [1 2 4 3]);
dicomwrite(J,'yourFile.dcm');
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Convert Image Type in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!