how can i perform gray scale dicom image of 16bits normalization ?

4 views (last 30 days)
Hello,
I need to normalize dicom Image of 16bits to the range of 0 65535. How can I do it ?
I would appreciate for any help please :)

Answers (1)

Walter Roberson
Walter Roberson on 15 Jul 2016
maxv = double( max(YourImage(:)) );
minv = double( min(YourImage(:)) );
scaled_Image = uint16( (double(YourImage) - minv) ./ (maxv - minv) * 65535 );
... or you could just click the appropriate button on the imcontrast tool to match the data range.

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!