如何使色条指向3D中的标记

我有以下类型的情节:

在这里输入图像描述

我使用surf function和使用plot3功能绘制的标记创建了黑白色表面。 对于每个标记,我已根据标记的值定义了红色 - 黄色 - 绿色之间的颜色映射。 正如你可以从图中看到的那样, colorbar指的是此时的表面,但我希望它指的是标记。 我怎样才能做到这一点?

谢谢!

这里是MWE基本上显示我现在做的事情:

% Plot the surface with a colormap
Z = peaks;
Z = peaks./max(Z(:));
Z = (Z+1)*3/2;
surf(Z)
colormap(flipud(gray))
shading interp
hold on

% Create the 4-dimensional marker data
x = (50-10).*rand(50,1) + 10;
y = (50-10).*rand(50,1) + 10;
z = (3-1).*rand(50,1) + 1;
q = 5.*rand(50,1); % This dimension is used to select the color

% Create the color map for the markers
c1=[0 1 0]; %G
c2=[1 1 0]; %Y
c3=[1 0 0]; %R
n1 = 20;
n2 = 20;
cmap=[linspace(c1(1),c2(1),n1);linspace(c1(2),c2(2),n1);linspace(c1(3),c2(3),n1)];
cmap(:,end+1:end+n2)=[linspace(c2(1),c3(1),n2);linspace(c2(2),c3(2),n2);linspace(c2(3),c3(3),n2)];
cmap = cmap';

% Select the colors for the markers
marker_colors = zeros(size(50, 1), 3);
q_interval = max(q)-min(q);
q_int = q_interval/(n1+n2);
q_vals = zeros(n1+n2,1);
q_vals(1) = min(q);
for i = 2:size(q_vals,1)
    q_vals(i) = min(q) + (i-1)*q_int;
end
for i = 1:50
    d = abs(q_vals - q(i));
    ind = find(d == min(d));
    marker_colors(i,:) = cmap(ind,:);
    % Plot the marker
    plot3(x(i), y(i), z(i), 'o', 'color', [0 0 0], 'MarkerFaceColor', marker_colors(i,:))
end

% Lastly I plot the colorbar, which refers to the surface... :/ 
colorbar

如果你不依赖plot3函数,你可以使用scatter3代替。

%% Data for surface
[X,Y]=meshgrid(-2:.1:2, -2:.1:2);
Z=max(0,peaks(X,Y));
C=1-cat(3,Z,Z,Z)/max(Z(:));

%% data for points
x=(rand(50,1)*4)-2;
y=(rand(50,1)*4)-2;
z=max(0,peaks(x,y));
c=0.5*rand(50,1);

%% Colormap
c1=[0 1 0]; %G
c2=[1 1 0]; %Y
c3=[1 0 0]; %R
n1 = 20;
n2 = 20;
cmap=[linspace(c1(1),c2(1),n1);linspace(c1(2),c2(2),n1);linspace(c1(3),c2(3),n1)];
cmap(:,end+1:end+n2)=[linspace(c2(1),c3(1),n2);linspace(c2(2),c3(2),n2);linspace(c2(3),c3(3),n2)];
cmap = cmap';

%% Create surface with texture defined in C
surf(X,Y,Z,C)
shading interp
hold on

%% plot points in coordinates x,y,z with markers with 12 pt in diameter,
%% coloured according to c values, filled and with black marker edges.
scatter3(x,y,z,12,c,'filled','markerEdgeColor','k')

%% set colormap (change will apply only for scatter because surf uses texxture map)
colormap(cmap)
colorbar
链接地址: http://www.djcxy.com/p/33939.html

上一篇: How to make colorbar refer to markers in 3D

下一篇: How to avoid brackets in SQL around Django custom database function call?