How to read map of RGB image by using imread?

6 次查看(过去 30 天)
after run this code the value of map is empty.please guide me.
[rgb,map] = imread('color.png');
  2 个评论
Stephen23
Stephen23 2016-9-5
编辑:Stephen23 2016-9-5
Only indexed images have maps. If the map is empty then you do not have an indexed image:
Why do you expect there to be a map ?
fred bnm
fred bnm 2016-9-5
if convert gray or each channel of RGB image into indexed image , may That achieved Map ?

请先登录,再进行评论。

回答(2 个)

Thorsten
Thorsten 2016-9-5
编辑:Thorsten 2016-9-5
If the value is empty, the image is not in a mapped format, i.e., RGB values are stored for each pixel (true color format), not a single number as an index into the map (palettes image format).
  3 个评论
Thorsten
Thorsten 2016-9-5
编辑:Image Analyst 2016-9-5
This is because the image you saved is stored with the gray scale value for each pixel, without any map.
You can use rgb2ind to convert the image to an indexed image, which then can be stored using imwrite(I, map, filename). But why do you want a map/indexed image in first place?
Image Analyst
Image Analyst 2016-9-5
I agree with Thorsten. There is no map because you saved a gray scale image. Why do you think you need a map? Even if you didn't store one in the file (so that others would be able to see the map you used), you could still read in the gray scale image and apply a colormap after it's been read in and displayed. If you really want one, then create one and save it with imwrite(). Which map are you using, if any, when you call imshow() to display your image?

请先登录,再进行评论。


sajeela khan
sajeela khan 2018-1-27
编辑:Stephen23 2018-2-13

hello i am new at matlab. i am doing my work on field images .i have rgb images and some images taken from multispectral camera images have to work on it. but i dnt know how and what kind of processig i can do on it. kindly guide me that what kind of functions i can appy and what i can do atleast on these rgb and multispectral images. what cam we do using RGB images for fields

  8 个评论
sajeela khan
sajeela khan 2018-2-13
编辑:sajeela khan 2018-2-13
hello sir i need some serious help on my project so i talk to him and asked him u deleted my recent messages about which i need his help . i dnt know how to contact him other way. @Image Analyst sir kindly help me and tell me how i can find latitude and longitude of this image. My images are all ariel. I am working on it since 15 days but find nothing helpfull and worthy. I have to work on these images and i cant find that what can i do with them . Atleast one 1st step that i should apply on it . i have converted it into tiff format and try to find latitude and longitude but my function is not working. Can u help me in this regard r do u know any one who can help me .
Stephen23
Stephen23 2018-2-13
@sajeela khan: as I wrote earlier, you should start your own question. It would get more help than hiding your discussion in someone else's ancient thread.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Get Started with Image Processing Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by