Convert dcm file to text file
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
mohd akmal masud
el 13 de Jul. de 2023
Comentada: Simon Chan
el 14 de Jul. de 2023
Dear all,
I have the dicom image as attached (1.3.12.2.1107.5.6.1.1131.30330121041902101908100000087.dcm in folder image). That have 360 slices.
Then my lecturer convert it into text file as attached (in folder Projections) just till slice no. 104. He used ImageJ software.
He asked their students to convert it using Matlab as my assignment.
Anyone can help me?
0 comentarios
Respuesta aceptada
Simon Chan
el 14 de Jul. de 2023
2 comentarios
Simon Chan
el 14 de Jul. de 2023
Noticed your results using ImageJ has rotated 90 degrees and hence function rot90 is used in the code.
Try the following:
I = dicomread('xxx.dcm'); % Your dicom file
Nz = size(I,ndims(I)); % Number of frames
for k = 1:Nz
writematrix(rot90(I(:,:,1,k)),sprintf('%03d.txt',k)); % Write into txt file
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Convert Image Type en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!