How can I normalize my PET/CT images

5 次查看(过去 30 天)

回答(1 个)

KALYAN ACHARJYA
KALYAN ACHARJYA 2023-6-10
Normalization can be done in multiple scale range.
You may follow the following way
image_data=double(original_image)
%Normalize pix values in the range 0 & 1
normalized_im=imadjust(image, [minVal, maxVal], [0, 1]);
%minVal & maxVal represent the minimum & maximum pixel value in the image
%display image to check
imshow(normalized_im,[])

类别

Help CenterFile Exchange 中查找有关 Read, Write, and Modify Image 的更多信息

产品


版本

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by