use dicomread to import data from dicom file, and the application crashes or throws exceptions
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
错误使用 dicomread>newDicomread (line 233) Unsupported data encoding.
出错 dicomread (line 89) [X, map, alpha, overlays] = newDicomread(msgname, frames, useVRHeuristic);
0 Commenti
Risposte (1)
Kautuk Raj
il 28 Ott 2024
The error message being encountered suggests that the data encoding of your DICOM file is not supported by ‘dicomread’.
The target image file may be in an encoding that is not supported by the ‘dicomread’ function. To find the encoding used in your DICOM file, use the ‘dicominfo’ function to extract metadata from your DICOM file and examine the ‘TransferSyntaxUID’ field.
info = dicominfo('yourfile.dcm');
disp(info.TransferSyntaxUID);
The list of supported formats for the ‘dicomread’ function on this MathWorks documentation page: https://www.mathworks.com/help/images/ref/dicomread.html#:~:text=Supported%20Transfer%20Syntax%20UIDs
0 Commenti
Vedere anche
Categorie
Scopri di più su DICOM Format 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!