imshow() black for max value and white for min value?

3 Ansichten (letzte 30 Tage)
Milk
Milk am 23 Jul. 2020
Kommentiert: Milk am 23 Jul. 2020
If you specify an empty matrix ([]), then imshow uses a display range of [min(I(:)) max(I(:))]. In other words, the minimum value in I is black, and the maximum value is white.
If I is data type single or double, then the default display range is [0, 1].
In my project, my I is a double (20 x 10), and I would like to show the minimum value in I is white, and the maximum value is black instead. Is there a way to do it?
Thank you.

Akzeptierte Antwort

Stephen23
Stephen23 am 23 Jul. 2020
Assuming that the image array A contains values in the range 0-1:
imshow(1-A)
  3 Kommentare
Stephen23
Stephen23 am 23 Jul. 2020
"To inverse the value?"
Yes.
Milk
Milk am 23 Jul. 2020
Thank you :)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by