How do i get all the vertices of the polygons in Voronoi 2D plot.
1 回表示 (過去 30 日間)
古いコメントを表示
I am looking for a way to get all the vertices of Voronoi plot, I know i can use this:
[v,c] = voronoin([x(:) y(:)])
This will provide the index of the vertices for each polygon and the positions of each. This will also identify the finite vertices. But what I am looking for is the point positions where there is no vertices, but where the polygon line crosses the defined figure axis. IS this possible?
Thank you.
0 件のコメント
回答 (1 件)
KSSV
2016 年 5 月 27 日
Where ever the length of c{i} is less it is not closed....Check for each length of c{i} and use nearest neighbor to get the points you wanted. You may use knnsearch for nearest points. Hope this helps.
2 件のコメント
参考
カテゴリ
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!