how to find maximum distance of convex polygon for each point in a convex hull?

5 views (last 30 days)
matlab code to find the largest distance from each point in a convex hull

Accepted Answer

Walter Roberson
Walter Roberson on 31 Oct 2017
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()

More Answers (1)

Bruno Luong
Bruno Luong on 2 Jan 2019
This is a method that provides the maximum distance that has better complexity than computing distance of all pairs as other answer

Categories

Find more on Bounding Regions in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!