How can I convert a dicom image into tiff?
Show older comments
I would like to convert a dicom image into tiff. Do I use imwrite?How can I convert it into 256 gray values?
Answers (1)
Thorsten
on 17 Nov 2015
To convert to tiff (e.g., uint16 dicom to uint16 tif):
I = dicomread('../../Downloads/CR-MONO1-10-chest');
imwrite(I, 'chest.tif');
To convert to 256 values (uint8)
I2 = uint8(255*double(I)/double(max(I(:))));
imwrite(I2, 'chest256.tif');
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!