Effacer les filtres
Effacer les filtres

How to determine the Voronoi center coordinates knowing ?

17 vues (au cours des 30 derniers jours)
mika
mika le 17 Juin 2014
Modifié(e) : mika le 23 Juin 2014
I have a skeleton of a road network and i want to estimate the cùenter of eacùh cell of the voronoi diagram
below the image
any ideas please !
thx
  2 commentaires
Sean de Wolski
Sean de Wolski le 17 Juin 2014
So you want to calculate the voronoi diagram of the end points and then find the centers? I'm not totally clear on how you want to get from the above image to your centroids.
mika
mika le 23 Juin 2014
i want to determine each voronoi cell by connecting the missed segment
mentioned in yellow
but first i have to determine the centroid of each cell to calculate the
delaunay triangulation to estimate the missed segment because they present
the bisector of each segment in the voronoi diagramme
below the result that i want
any ideas please to determine the centroid knowing that i have the ending points coordinates and the segments coordinates!
thx

Connectez-vous pour commenter.

Réponses (1)

Jason Nicholson
Jason Nicholson le 18 Juin 2014
Modifié(e) : Jason Nicholson le 18 Juin 2014
This does not deal with the inf's. You will have to replace the infinities with finite values on your boundary to get a better center estimation.
X = rand(10,2);
[V,C] = voronoin(X);
xCenter = cellfun(@(index) mean(V(index,1)),C);
yCenter = cellfun(@(index) mean(V(index,2)),C);
  1 commentaire
mika
mika le 23 Juin 2014
Modifié(e) : mika le 23 Juin 2014
i have segments coordiantes and ending points coordinates and vertices but not C like the image show
how to deal with to estimate the centroid of each cell
thx

Connectez-vous pour commenter.

Catégories

En savoir plus sur Voronoi Diagram dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by