Dicom image reading help

2 vues (au cours des 30 derniers jours)
naila
naila le 24 Juil 2013
hi, I have 64 dicom slices in a file as: 001.dcm 002.dcm 003.dcm 004.dcm 005.dcm . . . . .064.dcm
I want to read these from a file one by one for some processing on each individual slice? How can l do it probably by using Loop, Please....?

Réponses (1)

Gareth Thomas
Gareth Thomas le 24 Juil 2013
You will need the Image Processing Toolbox. Here is a reference: http://www.mathworks.nl/help/images/ref/dicomread.html
On this page there is an example:
info = dicominfo('CT-MONO2-16-ankle.dcm');
Y = dicomread(info);
figure, imshow(Y);
imcontrast;
Please note that the image you use can be yours.
I would do something like
a = dir('*.dcm')
for i=1:length(a)
info = dicominfo(a(i).name);
Y = dicomread(info);
figure, imshow(Y);
%%or do some other procesing.
imcontrast;
end
  1 commentaire
naila
naila le 26 Juil 2013
Thank you for reply! but it shows nothing when i use it on command window. Okey! I make my question more simple I have a folder named patient in matlab's current directory I want to read all the 64 MR dicom images from it one by one for further processing.

Connectez-vous pour commenter.

Catégories

En savoir plus sur DICOM Format dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by