필터 지우기
필터 지우기

Find if a point lies bellow or above a curve

조회 수: 31 (최근 30일)
TYo
TYo 2015년 6월 4일
댓글: Vithal Bable 2018년 8월 14일
Is it possible to find if a point lies under a curve C if the curve is not defined by an equation but by points? Say we have point Po(Xo,Yo) and I want to find if this Po is located below, under or on the curve.
Any ideas of how to do that?
I can only think of the following method:
  • Drawing a line 'l' connecting (0,0),Po, the curve
  • Finding the coordinates of the point P1 at which 'l' crosses the curve.
  • Measuring the distance from (0,0) to Po = d1 and comparing it with the distance from (0,0) to P1 =d2
  • If the d1>d2, Po is above, else, it is below
The problems:
  1. I don't know how to make the line go through the curve
  2. I don't know how to find the coordinates of the point at which the line crosses the curve
I know this might be a simple question for most of you but mathematically I can only think of formulas related to polygons, circles, triangles...etc. not for assymptotic curve.
Thank you!
Lina
  댓글 수: 1
Jonathan
Jonathan 2015년 6월 4일
편집: Jonathan 2015년 6월 4일
If your curve C is convex (or concave), then you can find this easily by solving a linear system to find the linear combination of curve-points that give your query-point (regularised in the least-squared sense). Otherwise, if your curve doesn't have too many points, you can simply check whether your query-point is under/over each line-segment that makes up your curve (consecutive pairs of curve-points).

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

채택된 답변

Salaheddin Hosseinzadeh
Salaheddin Hosseinzadeh 2015년 6월 4일
편집: Salaheddin Hosseinzadeh 2015년 6월 4일
Hi TY
Yes, you can easily do this. I actually done it before, I had series of points and I draw a line with mouse (2 points) turned those 2 points into line and I guess I removed all the points under that line. The code I wrote is as follows.y and x are the position of the points, Y and X are the position acquired by mouse (threshold line data) which is equated as m*(x(i)-X(1))+Y(1))
%%Added on May 18 2015 to cut a certain point
[X,Y] = ginput(2); % taking 2 points by mouse
m = (Y(2) - Y(1)) ./ (X(2)-X(1)) % defining the line slope
C = 0
newX = 0;
newY = 0;
xSize = numel(x)
for i =1: numel(x)
if (y(i)> (m*(x(i)-X(1))+Y(1))) % checking if its above the defined line
C = C+1;
newX(C) = x(i);
newY(C) = y(i);
end
assignin('base','X',newX)
assignin('base','Y',newY)
end
figure
plot(newX,newY,'*')
axis equal
Here is a picture of the result
What you want is no different than this, I had to create the points for the lines which I draw by means of 2 points, but you have your threshold line points apparently. One step closer to what you want!
Good luck!
  댓글 수: 1
Vithal Bable
Vithal Bable 2018년 8월 14일
this is wrong code as you not provided small letter variable'x' value....

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by