How can I normalize my PET/CT images
6 ビュー (過去 30 日間)
古いコメントを表示
回答 (1 件)
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,[])
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Read, Write, and Modify Image についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!