Does dicomreadVolume automatically rescale the image?

I am using dicomreadVolume to load a stack of DICOMs into matlab. I can see in the metadata the RescaleSlope (1.2) and RescaleIntercept. I am wondering if these values are automatically applied to my image data (v_tmp), or if I should manually apply it after loading it in.
% Read Dicom Volume
[v_tmp, spatial_tmp] = dicomreadVolume(coll(i, :));
v_tmp = (v_tmp * allMeta(i).RescaleSlope) + allMeta(i).RescaleIntercept;

 Respuesta aceptada

Matt J
Matt J el 16 de Abr. de 2026 a las 16:12
You should manually apply it.

Más respuestas (0)

Categorías

Más información sobre DICOM Format en Centro de ayuda y File Exchange.

Preguntada:

el 16 de Abr. de 2026 a las 14:25

Comentada:

el 16 de Abr. de 2026 a las 17:20

Community Treasure Hunt

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

Start Hunting!

Translated by