How to Perform an Operation on a Sequence of DICOM Images
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
vinod naidu
el 12 de Ag. de 2014
Editada: vinod naidu
el 3 de Sept. de 2014
HI i am doing a project on CT data(DICOM) image processing so i need to process(filtering) a bunch of dicom files in matlab for this how can i load and process a bucnh of DICOM files
this is my code i am getting error at I=dicomread(x{1});
CT = fullfile(CT data,'toolbox','images','imdata'); dirOutput = dir(fullfile(CT,'image000001*.dcm')); x = {dirOutput.name}; numFrames = numel(fileNames);
I = imread(x{1}); sequence = zeros([size(I) numFrames],class(I)); sequence(:,:,1) = I; % for p = 2:numFrames sequence(:,:,p) = imread(fileNames{p}); 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.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!