PARULA colormap when working with point cloud data

13 vues (au cours des 30 derniers jours)
Ebube Ezi
Ebube Ezi le 14 Jan 2020
Commenté : Adam Danz le 15 Jan 2020
Please what does the colors in PARULA colormap mean when working with point cloud data. I viewed the data using "pcshow" and I want to know what the colors mean or represent. I understand I can change this to JET or WINTER or various colormaps. I made an indept search into matlab and I found information about point intensities but this is not clear enough when this is compared to a tolerance bar when dealing with temperature where you can easily tell that RED indicated a high temperature gradient region.

Réponse acceptée

Adam Danz
Adam Danz le 14 Jan 2020
Modifié(e) : Adam Danz le 14 Jan 2020
The colors of a colormap do not have any inherent meaning. They are merely scales that cover the range of your data or whatever limits you set. To see the definitions of the colormap that belongs to your data, add a colorbar and optionally, set its limits caxis(limits).
colorbar()
Here's a demo; since I didn't specify color in the 2nd input to pcshow(), the color is scaled according to the z values. Notice that yellow equals 1 and the yellow portion of the data is at z=1.
[x,y,z] = sphere(600);
ph = pcshow([x(:),y(:),z(:)]);
cb = colorbar();
cb.Color = 'w'; % set text to white because the background is black
  2 commentaires
Ebube Ezi
Ebube Ezi le 15 Jan 2020
Thank you so much Adam. I've been digging into its meaning and had initially concluded it didn't mean anything except for being a default representation by matlab.
Thank you
Adam Danz
Adam Danz le 15 Jan 2020
Glad I could help sort that out!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Colormaps 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!

Translated by