Constructing an Offset-Curve

조회 수: 45 (최근 30일)
Ben
Ben 2014년 12월 2일
답변: alper yeldan 2021년 12월 8일
Probably this question has already been posted several times, however I was not able to find an answer.
I have a smooth curve given as a set of X and Y data points and I am trying to constrcut an offset curve. Bascially my strategie was to search for the perpendicular direction at each point of the given [X,Y] data set and then follow this direction according to the desired offset. This works well for convex curves. However for concave curves, there will be a setback at certain points.
This is actually a very common problem in CNC programming. Commercial CAD and CAM software packages mostly offer a solution to this problem. Unfortunately I was not able to find a solution in matlab. Maybe I am looking in the wrong place...
I would be glad if someone could share their knowledge.
Thanks in advance! Ben
  댓글 수: 2
Will Walton
Will Walton 2015년 3월 27일
Ben, I was wondering what kind of progress you've made on this. I'm working on a similar issue, trying to compare the profile of a machined part using a CMM with a nominal profile. The algorithms in Mohammad's paper make sense in an abstract way, but actually implementing them in Matlab seems difficult.
Andries Paula
Andries Paula 2017년 2월 23일
Hey. Did you managed to find out what approche is the best ?

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

채택된 답변

Unai San Miguel
Unai San Miguel 2017년 4월 28일
The subject is not trivial, a nice description can be found in the Patrikalakis et al. ebook, Offset curves and surfaces. They also speak about the particular problems of CNC.
  댓글 수: 1
Ben
Ben 2017년 4월 28일
I agree, it is not a trivial task! Thank you for your input, this looks very informative.

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

추가 답변 (2개)

alper yeldan
alper yeldan 2021년 12월 8일
It is an old question but I think I can explain a bit more. You shoul check this. If you know the equation of your function can express in x = [x(t), y(t)]. Parallel curve with a distance d can be expressed in Cartesian coordinates as:
x_d(t) = x(t) + d*dy(t) / sqrt(dx(t)^2 + dy(t)^2);
y_d(t) = y(t) - d*dx(t)/sqrt(dx(t)^2 + dy(t)^2);
From here you can easily plot the parallel curves in MATLAB, but it might not be possible in CAD programs, because these lines are generally NOT polynomial. If you want to see more examples check this link too.

Matt J
Matt J 2014년 12월 2일
You haven't said what properties your "offset curve" must satisfy, so this is just a shot in the dark. However, what you could do is create a binary image that is white in the region above or below the given curve. Then apply imerode(). Then, find the boundary of the eroded region using bwboundaries. Then, do a curve fit to the boundary points and call that your final offset curve.
  댓글 수: 5
Mohammad Abouali
Mohammad Abouali 2014년 12월 2일
Matt, a simple translation of all points doesn't work. It is more complicated than just a simple translation of points.
And the goal is not just to keep the red and blue line parallel to each other. But also a t a certain distance from each other. So, depending on the curves and the distance they gradually actually reshape and change their form.
This is very common in CAD softwares. AutoCAD had it as long as I remember.
Matt J
Matt J 2014년 12월 2일
Guys, you're missing my point. Of course I know there must be more constraints. My point is that the discussion can't go forward without us being told what they are!!

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

카테고리

Help CenterFile Exchange에서 Interpolation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by