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

3 vues (au cours des 30 derniers jours)
Milk
Milk le 23 Juil 2020
Commenté : Milk le 23 Juil 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.

Réponse acceptée

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

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by