Specify display range in imoverlay

Hello,
I am working on image analysis and I am trying to superimpose images by using imoverlay. My base image is a double image, so if I use imshow(image1, [ ]) the image can be displayed correctly. However when I use imoverlay(image1, image2), image1 is completely white because this command does not restrict display range like imshow does. Anyone can help me with this?
Thanks.

 採用された回答

Ameer Hamza
Ameer Hamza 2020 年 4 月 9 日

0 投票

imshow(image1, [ ]) merely normalized the input image of double type to the range 0 to 1. You can do a similar thing when you pass it to overlay
imoverlay(normalize(image, 'range'), image2)

2 件のコメント

Chuan Zhang
Chuan Zhang 2020 年 4 月 9 日
That solves my problem, thank you so much.
Ameer Hamza
Ameer Hamza 2020 年 4 月 9 日
Glad to be of help.

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeImages についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by