how to find maximum distance of convex polygon for each point in a convex hull?
5 ビュー (過去 30 日間)
古いコメントを表示
Arpita Ghosh 16MCS0004
2017 年 10 月 31 日
回答済み: Bruno Luong
2019 年 1 月 2 日
matlab code to find the largest distance from each point in a convex hull
0 件のコメント
採用された回答
Walter Roberson
2017 年 10 月 31 日
boundary() to find the points that correspond to the convex hull. Use the indices returned to extract the points. pdist2() from each point you wish to test to each point on the hull. squareform() and max()
0 件のコメント
その他の回答 (1 件)
Bruno Luong
2019 年 1 月 2 日
This is a method that provides the maximum distance that has better complexity than computing distance of all pairs as other answer
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Bounding Regions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!