MATLAB: Hi,how to change the resolution of DICOM image

dicom image-medical image processingImage Processing Toolbox

i have a series of dicom image that has a 512*512 matrix.i want to decrease the resolution of this image to the 128*128 matrix.
thanks in advance to your answers and help me

Best Answer

Try imresize():
image128 = imresize(image512, [128, 128]);
For code to process a bunch of them, see hte FAQ: http://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_sequence_of_files.3F
Related Question