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?
4 vues (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
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!