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.

1 件のコメント

Amey Gawde
Amey Gawde 2012 年 11 月 26 日
How should i correct it. plz help.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by