Borrar filtros
Borrar filtros

How can I normalize my PET/CT images

11 visualizaciones (últimos 30 días)
Kabiru
Kabiru el 10 de Jun. de 2023
Respondida: KALYAN ACHARJYA el 10 de Jun. de 2023

Respuestas (1)

KALYAN ACHARJYA
KALYAN ACHARJYA el 10 de Jun. de 2023
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,[])

Categorías

Más información sobre Read, Write, and Modify Image en Help Center y File Exchange.

Productos


Versión

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by