change color of specific location in image
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
Walter Roberson
le 3 Juil 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 commentaire
Voir également
Catégories
En savoir plus sur Colormaps dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!