how to generate planar projections from a 3d model

조회 수: 5 (최근 30일)
luca antonioli
luca antonioli 2019년 7월 15일
댓글: darova 2020년 2월 7일
hi, I have this model of an eye with different points that represent different structures... ( MATLAB figure)
I want to plot a projection along the z plane (like the first figure).
my idea is to generate different contours,for each structure,with the same z-coordinate and then, with polyftit/polyval ( or also b-spline) interpolate and generate the the contour in different planes,and at the end select the plane in which the x and y coordinates are bigger in modulus. is the idea correct?
are there other easer ways to generate contours?? any other methods able to generate isolines or isosurfaces?
should I consider contour3?
thanks

답변 (1개)

darova
darova 2019년 7월 16일
You want crossection of a surface in Z and other planes. Here is an example:
clc,clear
[X,Y,Z] = peaks(40);
figure(1)
contour3(X,Y,Z,-7:7) % create crossections in Z direction
hold on
% i don't know how extract contour
% without plotting
% so i just plot in the other figure
figure(2)
C = contour(Z,Y,X,-3:3); % extract contour in X direction
figure(1) % switch to the first figure
k = 1;
for i = 1:length(-3:3)
n = C(2,k); % number of points in the contour group
x = C(1,k); % x level
x = x +(1:n)*0;
z = C(1,(1:n)+k);
y = C(2,(1:n)+k);
plot3(x,y,z)
k = k+n+1; % index of the next contour group
end
hold off
Read more about Contour Matrix
contour_matrix_diagram.png
  댓글 수: 2
yang zhang
yang zhang 2020년 2월 7일
I want to achieve multi-dimensional model projection, how to operate?
darova
darova 2020년 2월 7일
What do you mean? Can you show?

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

카테고리

Help CenterFile Exchange에서 Scalar Volume Data에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by