필터 지우기
필터 지우기

How can I normalize my PET/CT images

조회 수: 3 (최근 30일)
Kabiru
Kabiru 2023년 6월 10일
답변: KALYAN ACHARJYA 2023년 6월 10일

답변 (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