change color of specific location in image

1 view (last 30 days)
chess
chess on 7 Aug 2014
Commented: Image Analyst on 3 Jul 2016
Hi assume I have an image, is there anyway to say to Matlab that I want the center pixels to be blue the corner to be yellow meaning that apply colormap to specific location?

Answers (1)

Walter Roberson
Walter Roberson on 3 Jul 2016
There is no way to apply a colormap to a particular location only. In any one image, if you want two locations to have different colors, then the two locations must be given different values.
What you can do is create two images on top of each other, setting the AlphaData property of the top image to 0 in the place where you want the bottom image to show through.
In R2014a and earlier, colormaps are figure properties, so you would not simply be able to use different colormaps for the two images: you would need to convert one of the images to RGB, such as by using the File Exchange contribution freezeColors .
In R2014b and later, colormaps are axes properties, so you would not simply be able to use different colormaps for the two images in the same axes. However, you can use two different axes that are in the same Position to have them "stack up"
  1 Comment
Image Analyst
Image Analyst on 3 Jul 2016
Or simply use an RGB image, instead of a colormap on an indexed image.

Sign in to comment.

Categories

Find more on Colormaps in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!