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;

 채택된 답변

Matt J
Matt J 2026년 4월 16일 16:12

0 개 추천

You should manually apply it.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 DICOM Format에 대해 자세히 알아보기

질문:

2026년 4월 16일 14:25

댓글:

2026년 4월 16일 17:20

Community Treasure Hunt

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

Start Hunting!

Translated by