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 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
pantea sam
el 8 de Mayo de 2022
Editada: pantea sam
el 9 de Mayo de 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 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre DICOM Format en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!