Imagesc - set diag to white
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi, Is there anyway to force a particular color on the diagonal of matrix plotted using imagesc?
Thanks, S
0 commentaires
Réponses (1)
Walter Roberson
le 7 Nov 2011
You would have to record the handle of the image object returned by imagesc(), get() the CData property from that handle, set the diagonal of that color data to be equal valued (e.g., all 1) on all three color planes, and set() the CData back to the modified matrix.
This will not work for pseudocolor images, though; right at the moment I do not have access to MATLAB to test whether imagesc() creates truecolor or pseudocolor CData . If it does create pseudocolor, then it becomes more complex, especially if white is not one of the colors in the color map.
0 commentaires
Voir également
Catégories
En savoir plus sur Operating on Diagonal Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!