フィルターのクリア

How can I draw separating lines between colors in a 3D volume plot?

2 ビュー (過去 30 日間)
luca pavarino
luca pavarino 2019 年 6 月 11 日
コメント済み: luca pavarino 2019 年 6 月 13 日
I am visualizing a 3D scalar function using the patch command and a given colormap (hsv) associated with the scalar values of the function. Unfortunately, Matlab dow not separate colors with lines, a feature which can be very useful to distinguish close values with similar colors. How can I draw lines between colors in my 3D patch plot? Many thanks for your help,
Luca
  6 件のコメント
darova
darova 2019 年 6 月 12 日
Can you please attach your data?
luca pavarino
luca pavarino 2019 年 6 月 13 日
The Matlab code fragment is the following and the data file is attached.
Thanks,
Luca
LV_S3_LAT; %load the data
V = Vertices(:,2:4);
T = Triangles(:,2:4)+1;
sV = size(V,1);
sT = size(T,1);
LAT = Values(:,4);
LAT_LV = LAT - min(LAT);
hh=patch('Faces',T,'Vertices',V,'FaceVertexCData',LAT_LV,'FaceColor','interp','EdgeColor','interp');
colormap(hsv);
colorbar;
grid on
view(115,-16);
set(gca,'Color','k');
shading interp
lightangle(-15,0)
hh.FaceLighting = 'gouraud';
hh.AmbientStrength = 0.3;
hh.DiffuseStrength = 0.8;
hh.SpecularStrength = 0.9;
hh.SpecularExponent = 25;
hh.BackFaceLighting = 'unlit';

サインインしてコメントする。

回答 (1 件)

KSSV
KSSV 2019 年 6 月 13 日
Remove the shading interp line after plotting.
LV_S3_LAT; %load the data
V = Vertices(:,2:4);
T = Triangles(:,2:4)+1;
sV = size(V,1);
sT = size(T,1);
LAT = Values(:,4);
LAT_LV = LAT - min(LAT);
hh=patch('Faces',T,'Vertices',V,'FaceVertexCData',LAT_LV,'FaceColor','interp','EdgeColor','interp','EdgeColor','k');
colormap(hsv);
colorbar;
grid on
view(115,-16);
set(gca,'Color','k');
% shading interp
lightangle(-15,0)
hh.FaceLighting = 'gouraud';
hh.AmbientStrength = 0.3;
hh.DiffuseStrength = 0.8;
hh.SpecularStrength = 0.9;
hh.SpecularExponent = 25;
hh.BackFaceLighting = 'unlit';
untitled.bmp
  3 件のコメント
KSSV
KSSV 2019 年 6 月 13 日
That case, you need to plot the contours on the data. Use this file exchange:
luca pavarino
luca pavarino 2019 年 6 月 13 日
These solutions do not work:
a) removing shading interp line after plotting just draw the triangles boundary, which is not what I need (I need to draw the boundary between the colors assigned by the colormap, i.e. I need to draw the isochronal lines or a scala field over a 3D volume).
b) the TRICONTOUR(TRI,X,Y,Z) function is not what I need because it draws countour lines of Z. What I need would be a TRICONTOUR(TRI,X,Y,Z,W) where W is a scalar function defined over the 3D volume described by X, Y, Z, but such a functions does not seem to exist in Matlab.
Luca

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeColormaps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by