Fit ellipse in 3D space
46 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
RoboTomo
am 27 Sep. 2022
Kommentiert: VIGNESH BALAJI
am 20 Jul. 2023
I have xy coordinates of the ellipse in 2D space and its coordinate center (0.1427, -0.4418).
I would like to fit this ellipse xy coordinates in to the 3D space to replace the one which is not correct/perfect. The coordinate center in 3D space should be (0.1427, -0.4418, -0.0564) and the plane is defined in attachment.
How can I calculate the missing z axis data to draw the ellipse in 3D space on the desired plane?
2 Kommentare
Akzeptierte Antwort
Matt J
am 28 Sep. 2022
Bearbeitet: Matt J
am 28 Sep. 2022
Another possibility is to use this FEX download,
to fit the 3D data directly.
load('xyz');
xyz=xyz';
fobj=planarFit(xyz); %Fit a plane to xyz data
R=fobj.R(:,[2,3,1])';
Rxyz=R*xyz; %Rotate xyz coordinates to be parallel to xy plane
z0=mean(Rxyz(3,:),2);
fobj=ellipticalFit(Rxyz(1:2,:)); %ellipse fit to the rotated data (ignoring z-coordinate)
Rxyz=cell2mat(fobj.sample(0:2:360)); %Generate 'evenly' spaced samples around the ellipse
Rxyz(3,:)=z0; %re-insert z-coordinate
xyzFit=R'*Rxyz; %rotate back to 3D
%Visualize
scatter3(xyz(1,:),xyz(2,:),xyz(3,:),'filled'); hold on
scatter3(xyzFit(1,:),xyzFit(2,:),xyzFit(3,:)); hold off
xlabel X; ylabel Y; zlabel Z
legend('Original','Fit')
view(50,30)
2 Kommentare
VIGNESH BALAJI
am 20 Jul. 2023
@Matt J the tool you mentioned looks great. Is there any tool to fit 3D data of a catenary (looks like a parabola but a hyperbolic cosine function) directly. please let me know.
Weitere Antworten (1)
Matt J
am 27 Sep. 2022
Bearbeitet: Matt J
am 27 Sep. 2022
I am searching for intersection of plane and ellipsoid
If that is the ultimate goal, you should just rewrite the ellipsoid equation in a rotated coordinate system where the intersection plane is the xy plane. That will result in a 2D equation for the intersection ellipse directly.
The appropriate basis vectors xaxis, yaxis, and zaxis can be obtained as,
zaxis=[A,B,C]';
xy=null(zaxis');
xaxis=xy(:,1);
yaxis=cross(zaxis,xaxis);
and the 4x4 coordinate transform matrix needed to apply and invert the transformation is,
T=eye(4);
T(1:3,1:3)=[xaxis,yaxis,zaxis]';
T=T*makehgtform('translate',-[0.1427, -0.4418, -0.0564]);
2 Kommentare
Matt J
am 27 Sep. 2022
An alternative approach is to use the transform T that I derived above to map the 3D points that the surface intersection code gave you to 2D. In 2D, you can perform the ellipse fit and generate as many points on the ellipse as you wish. Then you can map back to 3D with inv(T).
Siehe auch
Kategorien
Mehr zu Curve Fitting Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!