How to determine the Voronoi center coordinates knowing ?
10 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
Sean de Wolski
2014 年 6 月 17 日
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.
回答 (1 件)
Jason Nicholson
2014 年 6 月 18 日
編集済み: Jason Nicholson
2014 年 6 月 18 日
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);
参考
カテゴリ
Help Center および File Exchange で Voronoi Diagram についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!