About image intensity equalization

How to make two images intensity wise same(intensity eualization)

 채택된 답변

Walter Roberson
Walter Roberson 2012년 8월 20일

0 개 추천

inten1 = sum(double(TheFirstImage(:)));
inten2 = sum(double(TheSecondImage(:)));
TheSecondImage = cast( TheSecondImage .* (inten1 ./ inten2), class(TheSecondImage));
However, the above has some subtle problems in areas that area already quite bright.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by