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?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
pantea sam
am 8 Mai 2022
Bearbeitet: pantea sam
am 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 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu DICOM Format finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!