Can someone propose some code that will "connect the dots" using circular arcs?
3 次查看(过去 30 天)
显示 更早的评论
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 个评论
Image Analyst
2019-11-17
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?
采纳的回答
Matt J
2019-11-18
编辑:Matt J
2019-11-18
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 个评论
更多回答(2 个)
Steven Lord
2019-11-14
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
2019-11-18
编辑:Matt J
2019-11-18
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
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!