About image intensity equalization

 Accepted Answer

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.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!