Borrar filtros
Borrar filtros

Distance of a point to the middle of a polygon

4 visualizaciones (últimos 30 días)
William Sheehan
William Sheehan el 9 de Ag. de 2018
Comentada: Image Analyst el 13 de Ag. de 2018
I currently have a oval shaped polygon with 18 points plotted within the area. All were determined using latitudinal and longitudinal coordinates.
I was wondering if there is anyway of either:
a) Reorientating the points so I can subtract the middle of the field coordinates (lat,long). This will mean I can observe the points with respect to their deviation to either the left or right of centre. Ideally getting a relative position of the points. or
b) Calculate the perpendicular distance from the widest points of the field.
Attached above is a picture of the polygonal area and the points inside for which I want to calculate their relative positions.

Respuestas (2)

KSSV
KSSV el 9 de Ag. de 2018
x = rand(10,1) ; y = rand(10,1) ;
mx = mean(x) ; my = mean(y) ;
plot(x,y,'.r') ;
hold on
plot(x-mx,y-my,'.b') ;
legend({'original', 'shifted'})
  1 comentario
William Sheehan
William Sheehan el 11 de Ag. de 2018
This would be okay if the oval shape was always perfectly orientated with the latitude and longitude axis. However, this won't be as accurate if the oval is disorientated in relation to the latitudinal and longitudinal axis.

Iniciar sesión para comentar.


Image Analyst
Image Analyst el 11 de Ag. de 2018
If you want to do it numerically/digitally instead of analytically, you can easily do this in a few lines of code. Just use poly2mask to make a digital image from your coordinates. Then call regionprops to get the center of the oval. Then use Pythagorean theorem to get the distance from the centroid to all of the other points.
mask = poly2mask(xOval, yOval, rows, columns);
props = regionprops(mask, 'Centroid');
xCentroid = props.Centroid(1);
yCentroid = props.Centroid(2);
% Find distance from centroid to other points.
distances = sqrt((x-xCentroid).^2 + (y-yCentroid).^2)
  2 comentarios
William Sheehan
William Sheehan el 13 de Ag. de 2018
Is there a way i can distingush whether or not an individual is specifically to one side?
I.e. if a marker is in the bottom half of the polygon it is negative or if the polygon is in the upper half it is positive? Likewise with the left and right portions of the polygon?
Image Analyst
Image Analyst el 13 de Ag. de 2018
Yes, take the y coordinate of the pixel and see if it is higher or lower than yCentroid. Same for xCentroid.

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by