Normalise an Uint16 image between specified limits
5 ビュー (過去 30 日間)
古いコメントを表示
Hi all
I have a gray-scale image in double precision that has to be converted to uint16 and normalise the image between the limits, say, 0-4000. I could convert the image to uint16. But when I do the normalisation by dividing with the maximum intensity of the image and then multiplying it with the maximum (say 4000)that i want to have, all the pixel values are saturated. I think this operation does the rounding thing as it is an integer. could anyone let me know how the normalisation within specified limits could be done for image matrix of uint16.
Your help is much appreciated. Regards
0 件のコメント
採用された回答
Walter Roberson
2013 年 6 月 28 日
uint16( YourImage ./ (ExistingImageMaximum .* (1+eps)) .* NewImageMaximum )
Note: with this particular formulation, 0 and the new maximum will only have 1/2 of the probability of the other bins, which has to do with uint16() rounding. If you change to multiplying by (NewImageMaximum+1) and you floor() before you uint16() then the bins should equalize.
3 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Convert Image Type についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!