Can someone propose some code that will "connect the dots" using circular arcs?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
Can someone propose some alternate or additional code (to the code proposed in my last posting here) that will automatically connect the dots (dots = center points of each triplet), as shown below, to generate the correct polygons from the given points in the attached file (fpep.mat)?
Note 1: The edges of each polygon must be circular arcs (we cannot use splines for this one) that connect all the center points.
Note 2: Each "triplet" will produce precesely 3 circular arcs (except for those along the outer borders).
Note 3: Each arc's initial and final slopes are given by the angle between the centerpoint and the corresponding endpoint for that arc (remember that the inital and final slopes of each arc must be equal-and-opposite; so, the "starting" and "landing" angles must be averaged).
The coords of each endpoint are contained in the first 6 columns of the attached file (fpep.mat) and the coords of the center points are contained in the last two columns.
Once again, I'm excited to see what you can come up with. Thanks in advance for your help!
5 commentaires
Image Analyst
le 17 Nov 2019
You did not answer the question. Let me try again.
- If one arcs up, however shallowly, and one arcs down, which equation/arc do you pick?
- And, why would you even pick either of them? Why not just say the connecting edge is a straight line?
- Why do you think you NEED an arc rather than a straight line?
Réponse acceptée
Matt J
le 18 Nov 2019
Modifié(e) : Matt J
le 18 Nov 2019
The spline plotting that we came up with in our previous conversation looked like this
for i=1:N
C1=AP(:,1,i); C2=AP(:,4,i); %Center points
V1=AP(:,2,i); V2=AP(:,3,i); %Triplet end points
L=norm(C2-C1);
U=(C2-C1)/L;
s=[0, dot(V1-C1,U)/L , dot(V2-C1,U)/L , 1];
APi=interp1(s.',AP(:,:,i).',sq.','spline');
X(:,i)=APi(:,1); %x coordinates on connecting curve
Y(:,i)=APi(:,2); %y coordinates on connecting curve
end
It is this section of code (and nothing else) that you need to modify to connect C1 and C2 (the center points of the i-th arc) with a different curve of your choosing.You simply must fill X(:,i) and Y(:,i) with the x and y coordinates of the points that form the desired connecting curve (based on C1,V1,V2, and C2).
11 commentaires
Plus de réponses (2)
Steven Lord
le 14 Nov 2019
Are you trying to do something like path planning for an autonomous vehicle, passing through waypoints along the way? If so consider the functions for that purpose in Automated Driving Toolbox.
Matt J
le 18 Nov 2019
Modifié(e) : Matt J
le 18 Nov 2019
I have attached a version of TripletGraph.m which implements methods of joining the points with ideal circular arcs, as well as with the spline and quadratic approximations discussed previously. The code below plots your data with circular and quadratic arcs super-imposed. To my eye, there is no visible difference, so it seems like it should be sufficient to use the quadratic approximation, which as I have said is numerically a lot safer.
load fpep
obj=TripletGraph(fpep);
figure(1);
obj.plotcirc; %join with ideal circular arc formula
hold on;
obj.plotquad; %join with quadratic approximation
hold off
14 commentaires
Voir également
Catégories
En savoir plus sur Interpolation dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!