Effacer les filtres
Effacer les filtres

How to read multiples DICOM images

7 vues (au cours des 30 derniers jours)
Usama Javed
Usama Javed le 30 Déc 2011
hi,
can u tell me the procedure of reading multiple dicom images from a folder??
I have a folder named as 'Images', and dicom images are there, so i want to load these images in matlab.
I shall be thankful...
  1 commentaire
Walter Roberson
Walter Roberson le 30 Déc 2011
http://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_sequence_of_files.3F

Connectez-vous pour commenter.

Réponse acceptée

Chandra Kurniawan
Chandra Kurniawan le 30 Déc 2011
dicomlist = dir(fullfile(pwd,'Images','*.dcm'));
for cnt = 1 : numel(dicomlist)
I{cnt} = dicomread(fullfile(pwd,'Images',dicomlist(cnt).name));
end
  19 commentaires
Bhavna Pancholi
Bhavna Pancholi le 19 Juin 2018
Modifié(e) : Walter Roberson le 27 Mar 2020
hello,
dicomlist = dir(fullfile(pwd,'Images','*.dcm'));
for cnt = 1 : numel(dicomlist)
I{cnt} = dicomread(fullfile(pwd,'Images',dicomlist(cnt).name));
end
In this program, if i want to read 10 images from a folder, which type of changes are needed?
what is the significance of "pwd" ?
shivan artosh
shivan artosh le 27 Mar 2020
Modifié(e) : shivan artosh le 27 Mar 2020
Hello Bhavna
for loop from 1 to 10

Connectez-vous pour commenter.

Plus de réponses (0)

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