フィルターのクリア

Why do I get an image in grey scale after imread the gif image?

2 ビュー (過去 30 日間)
Anqi Li
Anqi Li 2014 年 7 月 10 日
コメント済み: Image Analyst 2014 年 7 月 11 日
My original image is with colour. I read the image file and display it, then I got a grey scale image. Does anyone know how I can load the image without change the colour scale? My code is like this: clear; close all;
I = imread('abc.gif')
figure, imshow(I);

回答 (1 件)

Image Analyst
Image Analyst 2014 年 7 月 10 日
Don't name it I - that's a bad name - hard to tell the difference between I (upper case i), and l (lower case L), and 1. Plus it's not very descriptive.
Try this
[indexedImage, colorMap] = imread('abc.gif');
imshow(indexedImage);
colormap(colorMap);
colorbar;
  8 件のコメント
Image Analyst
Image Analyst 2014 年 7 月 11 日
You have it displayed 3 times. Each figure is using a different colormap.
Image Analyst
Image Analyst 2014 年 7 月 11 日
Do you still not understand and need more explanation?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeBlue についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by