How to return an array without points in the edge?

조회 수: 3 (최근 30일)
Riccardo Tronconi
Riccardo Tronconi 2021년 8월 30일
편집: Adam Danz 2021년 9월 8일
Dear guys! How to determine points which are not on the edge?
I used this function:
[in,on] = inpolygon (kn, xq ,xv, yv);
But then how to remove from in points contained in on?

답변 (1개)

Adam Danz
Adam Danz 2021년 8월 30일
편집: Adam Danz 2021년 9월 8일
Use the logical outputs to the inpolygon function.
[in,on] = inpolygon (kn, xq ,xv, yv);
  • on indicates all data that are on the edges of the polygon.
  • ~on indicates all data that are inside and outside of the polygon but not on the edges.
  • in indicates all data that are in the polygon but not on the edges.
  • ~in & ~on indicates all data not in the polygon nor on the edges.
Demo:
L = linspace(0,2*pi,6);
xv = cos(L)';
yv = sin(L)';
rng default
xq = [randn(60,1); xv(1:2)];
yq = [randn(60,1); yv(1:2)];
[in,on] = inpolygon(xq,yq,xv,yv);
clf
plot(xv, yv, 'k-', 'LineWidth', 1, 'DisplayName', 'Polygon')
hold on
plot(xq(in),yq(in),'c*','DisplayName','in') %plot data IN polygon
plot(xq(on),yq(on),'ro','LineWidth',2,'DisplayName','on') %plot data on border
plot(xq(~in&~on),yq(~in&~on),'k.','DisplayName','out') %plot data outside of polygon
axis equal
legend()
To remove points points on the edge, you can replace thier values with NaN (1st line below) or remove them (2nd line below).
xq(on) = nan; yq(on) = nan; % replace with NaN
xq(on) = []; yq(on) = []; % -OR- remove

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by