I have 300 images dicom in a folder and I want to extra the features glcm,Can you help me with what code I can use?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
pantea sam
le 8 Mai 2022
Modifié(e) : pantea sam
le 9 Mai 2022
I have 300 images dicom in a folder and I want to extra the features glcm,Can you help me with what code I can use?
imagefiles = dir('D:\ct\New folder (2)');
nfiles = length(imagefiles); % Number of files found
for i=1:nfiles
currentfilename = imagefiles(i);
currentimage = imread(currentfilename);
images{i} = currentimage;
end
0 commentaires
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur DICOM Format dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!