Fill area between x-y data

Hi everyone!
I have a data as shown in the figure. I want to fill/find the polygon area with maximum probability (not necessarily circular, I need to find the shape). Can anyone please help me?
Thank you!

2 comentarios

Matt J
Matt J el 11 de Abr. de 2023
You'll need to define "maximum probability" for us. Are you sure you don't simply want to take the convex hull?
Walter Roberson
Walter Roberson el 11 de Abr. de 2023
Given the coordinates of any particular polygon, how would you calculate the "probability" of it?

Iniciar sesión para comentar.

Respuestas (2)

Joe Vinciguerra
Joe Vinciguerra el 11 de Abr. de 2023
Editada: Joe Vinciguerra el 11 de Abr. de 2023
xy = randn(100, 2);
shp = alphaShape(xy, inf);
area = shp.area;
facets = shp.boundaryFacets;
plot(shp, "LineStyle","none", "Marker","none")
hold on;
scatter(xy(:,1), xy(:,2))
grid on;
Image Analyst
Image Analyst el 11 de Abr. de 2023

0 votos

The polygon with the maximum density would be one that starts at one point and then snakes around until it has "grabbed" every point. The width of the snake would be infinitesimally small.

Categorías

Productos

Versión

R2022b

Preguntada:

el 11 de Abr. de 2023

Respondida:

el 11 de Abr. de 2023

Community Treasure Hunt

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

Start Hunting!

Translated by