Color a .ply according to Y value
4 ビュー (過去 30 日間)
古いコメントを表示
I have the follwing plot that I generate: Instead of having the background be white, i want the peaks of the curves to be white and as they increase in value, I want them to get darker. Does anyone have suggestions for this. The code and data file generates is linked HERE.
2 件のコメント
Ameer Hamza
2020 年 3 月 8 日
where is the file 'MunkS_500Hz.shd.mat'? It is also needed to run that code.
回答 (1 件)
Ameer Hamza
2020 年 3 月 8 日
What is the current colormap, you can reverse it by flipping the colormap matrix.
figure
p = pcshow(ptCloud);
colormap(gray)
p.Colormap = flipud(p.Colormap);
4 件のコメント
Ameer Hamza
2020 年 3 月 9 日
You can create your own colormap. For example,
figure
colors = ...
[zeros(8, 3);
gray(10);
ones(12, 3)];
p = pcshow(ptCloud);
colormap(colors);
creates following figure
参考
カテゴリ
Help Center および File Exchange で Colormaps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!