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

3 visualizaciones (últimos 30 días)
Milk
Milk el 23 de Jul. de 2020
Comentada: Milk el 23 de Jul. de 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.

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by