필터 지우기
필터 지우기

Color a .ply according to Y value

조회 수: 1 (최근 30일)
Sushmitha Kudari
Sushmitha Kudari 2020년 3월 8일
댓글: Ameer Hamza 2020년 3월 9일
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
Ameer Hamza 2020년 3월 8일
where is the file 'MunkS_500Hz.shd.mat'? It is also needed to run that code.
Sushmitha Kudari
Sushmitha Kudari 2020년 3월 8일
munkProfile = load('MunkS_500Hz.shd.mat');
pressureWave = munkProfile.pressure;
pressureWave = abs(pressureWave);
squished = squeeze(pressureWave);
logged = log(squished);
[X,Y]=ndgrid(1:size(logged,1),1:size(logged,2 ));
plot_mat = [X(:) Y(:) logged(:)];
[remove, ~] = find(plot_mat(:,3) == -Inf);
plot_mat(remove,:) = [];
sorted = sortrows(plot_mat, 3);
colorMat = addColor(sorted);
ptCloud_Coral = pointCloud(sorted,'Color',colorMat);
figure
pcshow(ptCloud_Coral);
Linking .mat : HERE

댓글을 달려면 로그인하십시오.

답변 (1개)

Ameer Hamza
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
Sushmitha Kudari
Sushmitha Kudari 2020년 3월 9일
It looks the same but for example I need the points at 600,0 to be white, not like this:
Ameer Hamza
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 CenterFile Exchange에서 Colormaps에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by