Borrar filtros
Borrar filtros

How to convert values of 0 to NaN

16 visualizaciones (últimos 30 días)
Eric
Eric el 5 de Dic. de 2023
Comentada: Walter Roberson el 8 de Dic. de 2023
When I plot my graphs using imagesc, how do I conver the values of 0 to NaN?
Currently, the colorbar displays 10^0 as the lowest, but if the value is 0, it still displays this blue color. I want the graph to display white if the value is equal to 0.

Respuestas (2)

Matt J
Matt J el 5 de Dic. de 2023
Editada: Matt J el 5 de Dic. de 2023
NaNs will not appear bright on an image display. You would have to replace them with a large value.
Image(Image==0)=brightValue;

Walter Roberson
Walter Roberson el 5 de Dic. de 2023
Editada: Walter Roberson el 5 de Dic. de 2023
Leave them the way they are now, but set the axes color to white. Tell imagesc() tol make NaN values transparent, so those locations would show the white background underneath.
im = imread('cameraman.tif');
figure
imagesc(im);
colormap(gray);
title('original');
nim = im2double(im);
nim(randi(numel(nim), 1, 3000)) = nan;
figure
imagesc(nim, 'alphadata', 0+~isnan(nim));
colormap(gray)
set(gca, 'color', 'r');
title('nan shows color underneath')
  4 comentarios
Eric
Eric el 8 de Dic. de 2023
Is 0+~isnan(nim) what converts the 0 squares to NaN?
Walter Roberson
Walter Roberson el 8 de Dic. de 2023
Your original question involved having data that has NaN inside it.
isnan(im) would respond with a logical array that is true (==1) for all NaN values and false (== 0) for non-nan values.
~isnan(im) would then be a logical array that is false (== 0) for all NaN values and true (== 1) for non-nan values.
0+~isnan(im) leaves the numeric values the same but converts to double precision. So you would have 0 (double) for all NaN values and 1 (double) for all non-NaN values.
Those 0 and 1 (double) are used as AlphaData values. Alpha values of 1 (in this case, meaning was not NaN) tell image() objects to be fully opaque -- so the color implied by the (non-NaN) data will be used at that location. And alpha values of 0 (in this case meaning the data was NaN) tell image() objects to make the pixel fully transparent, allowing whatever is underneath to be seen through at that location.

Iniciar sesión para comentar.

Categorías

Más información sobre Images en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by