change color of specific location in image
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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?
0 comentarios
Respuestas (1)
Walter Roberson
el 3 de Jul. de 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 comentario
Image Analyst
el 3 de Jul. de 2016
Or simply use an RGB image, instead of a colormap on an indexed image.
Ver también
Categorías
Más información sobre Colormaps en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!