hi,how to change the resolution of DICOM image?

1 view (last 30 days)
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

Accepted Answer

Image Analyst
Image Analyst on 26 Jun 2016
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

More Answers (0)

Categories

Find more on DICOM Format in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!