필터 지우기
필터 지우기

How to read map of RGB image by using imread?

조회 수: 6 (최근 30일)
fred bnm
fred bnm 2016년 9월 5일
댓글: Stephen23 2018년 2월 13일
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