Borrar filtros
Borrar filtros

Loaded Image Doesn't Retain Separate Colors

6 visualizaciones (últimos 30 días)
Amanda
Amanda el 30 de Ag. de 2012
I have an image of a map loaded in MATLAB.
BEFORE the map is loaded into MATLAB the appearance is:
US Continent: Green
Ocean: Blue
Canada: Yellow
AFTER I load the map it is displaying:
Canada and the US as one color BUT I need to separate them by colors.
My code is:
im = double(imread('US.png'))
figure;
colormap summer;
...
Thanks,
Amanda

Respuesta aceptada

Walter Roberson
Walter Roberson el 30 de Ag. de 2012
Try
fig = figure;
ax = axes('Parent', fig);
[im, cmap] = imread('US.png');
if isempty(cmap)
im = im2double(im);
cmap = summer;
end
image(im, 'Parent', ax);
colormap(cmap);
  3 comentarios
Amanda
Amanda el 30 de Ag. de 2012
Editada: Amanda el 30 de Ag. de 2012
Walter -- I really appreciate it. Only a few people are plotting and imaging experts.
Image Analyst
Image Analyst el 31 de Ag. de 2012
You're right, though it is the most used toolbox, according to the list at the left.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Modify Image Colors 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