How to say the third selected point lies within the created geometry or not?

조회 수: 1 (최근 30일)
close all
clc
base_x = [0 50 50 20 0 0]
base_y = [0 0 10 10 10 0 ]
roof_x = [ 0 0 20 20 30 30]
roof_y =[ 10 50 10 50 50 10]
figure
plot(base_x, base_y,'-')
hold on
plot(roof_x, roof_y,'-')
axis([0 50 0 50])
grid on
[X,Y]=meshgrid(1:11);
[x] = ginput(2);
[x] = round(x);
fprintf ('the a1 coordinate value is %d,\n' , x(1,1));
fprintf ('the b1 coordinate value is %d ,\n' , x(1,2));
fprintf ('the a2 coordinate value is %d,\n' , x(2,1));
fprintf ('the b2 coordinate value is %d ,\n' , x(2,2));
How to say the third selected points a1,b1 a2,b2 lies within the created geometry ( base,roof) or not?
  댓글 수: 4
Adam Danz
Adam Danz 2018년 7월 25일
Kaleesh, I'm continuing your other thread (link above) here because this topic seems to be more relevant to the problems you're having.

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

채택된 답변

Adam Danz
Adam Danz 2018년 7월 24일
편집: Adam Danz 2018년 7월 25일
If I understand your question correctly, you're trying to determine if a coordinate (x,y) lies within a polygon.
First try matlab's inpolygon().
Another way to achieve that is by "ray casting". The idea is to draw a line from the (x,y) coordinate and extend it rightward until it passes all of the possible polygon edges. Then count the number of times that ray intersects with an edge of the polygon. If that number is non-zero and odd, then the coordinate (x,y) is within the polygon.
To achieve that, you'll need to loop through each edge of your polygon and determine if each line segment intersects with the virtual ray. Here's a nice tutorial on how to detect line segment intersection. And here's more info on the ray casting technique.
  댓글 수: 5
Ramesh Bala
Ramesh Bala 2018년 7월 25일
편집: Ramesh Bala 2018년 7월 25일
yeah the bottom edge wasn't mentioned in the previous code,but there in the updated one
xv = [0 0 0 20 20 0 10 20 20 20 20 30 30 50 50 20 30 40 50]
yv = [0 0 50 10 0 0 0 0 0 10 50 50 10 10 0 0 0 0 0 ]
let me try to check with these values now Danke /Thanks Adam
Ramesh Bala
Ramesh Bala 2018년 7월 26일
yeah the command worked ,even the previous one also works. for the further case just added frpintf by calling on && in with values to check

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by