Downloaded 62 times













This document discusses convex hull algorithms. It defines a convex set as one where any line segment between two points in the set is also contained in the set. The convex hull of a set of points is the smallest convex set containing those points. Intuitively, in 2D the convex hull is the shape formed by stretching a rubber band around nails at each point, and in 3D it is the shape formed by stretching plastic wrap tightly around the points. The document then lists and describes several existing convex hull algorithms and provides an overview of an interior points algorithm that identifies non-extreme points based on whether they lie within triangles formed by other points.
An introduction to Convex Hull Algorithms presented by Kasun Ranga Wijeweera.
Formal definition of a convex set, indicating that a set S is convex if any segment between two points in S lies in S.
Definition of the convex hull, defined as the smallest convex set that contains all points in a set S.
Intuition behind the convex hull in 2D; compared to a rubber band stretched around points.
Intuition behind the convex hull in 3D; likened to plastic wrap tightly enclosing the points.
Convex hull algorithms can be applied to collision avoidance in various fields.
Minimum bounding box applications are discussed as one of the uses of convex hull algorithms.
Shape analysis as a significant application area for convex hull algorithms.
List of existing convex hull algorithms, including Gift Wrapping, Graham Scan, Quick Hull, and others up to 1996.
Introduction to the interior points algorithm, detailing conditions for a non-extreme point.
Algorithm pseudocode outlining how to determine non-extreme points based on triangle conditions.
An invitation for questions from the audience to clarify any points discussed.
Wrapping up the presentation with a thank you note from the presenter.