change color of specific location in image

2 Ansichten (letzte 30 Tage)
chess
chess am 7 Aug. 2014
Kommentiert: Image Analyst am 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?

Antworten (1)

Walter Roberson
Walter Roberson am 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 Kommentar
Image Analyst
Image Analyst am 3 Jul. 2016
Or simply use an RGB image, instead of a colormap on an indexed image.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Colormaps finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by