Effacer les filtres
Effacer les filtres

How to read map of RGB image by using imread?

6 vues (au cours des 30 derniers jours)
fred bnm
fred bnm le 5 Sep 2016
Commenté : Stephen23 le 13 Fév 2018
after run this code the value of map is empty.please guide me.
[rgb,map] = imread('color.png');
  2 commentaires
Stephen23
Stephen23 le 5 Sep 2016
Modifié(e) : Stephen23 le 5 Sep 2016
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 le 5 Sep 2016
if convert gray or each channel of RGB image into indexed image , may That achieved Map ?

Connectez-vous pour commenter.

Réponses (2)

Thorsten
Thorsten le 5 Sep 2016
Modifié(e) : Thorsten le 5 Sep 2016
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 commentaires
Thorsten
Thorsten le 5 Sep 2016
Modifié(e) : Image Analyst le 5 Sep 2016
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 le 5 Sep 2016
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?

Connectez-vous pour commenter.


sajeela khan
sajeela khan le 27 Jan 2018
Modifié(e) : Stephen23 le 13 Fév 2018

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 commentaires
sajeela khan
sajeela khan le 13 Fév 2018
Modifié(e) : sajeela khan le 13 Fév 2018
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 le 13 Fév 2018
@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.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Get Started with Image Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by