
PARULA colormap when working with point cloud data
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ebube Ezi
am 14 Jan. 2020
Kommentiert: Adam Danz
am 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.
0 Kommentare
Akzeptierte Antwort
Adam Danz
am 14 Jan. 2020
Bearbeitet: Adam Danz
am 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Orange finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!