About 115,000 results
Open links in new tab
  1. ConvexHull — SciPy v1.16.2 Manual

    A facet is visible from the outside of the hull only, and neither coplanarity nor degeneracy count as cases of visibility. If a “QGn” or “QG-n” option is not specified, None is returned.

  2. Convex Hull in Python - GeeksforGeeks

    Jul 23, 2025 · The convex hull is the smallest convex set that encloses all the points, forming a convex polygon. This algorithm is important in various applications such as image processing, …

  3. python - Calculating and displaying a ConvexHull - Stack Overflow

    How can I mark the points on the convex hull with a circle? As in example. Replacing np.rand() with randint(0, 10) will generate the coordinates as integers from 0,1,... to 9. Using '.' as …

  4. How to Calculate and Display a Convex Hull in Python

    Mar 11, 2025 · In this tutorial, we will walk through the process of calculating and displaying a convex hull using Python. We will leverage libraries like NumPy and Matplotlib to perform …

  5. Convex Hulls in Python - AskPython

    Jul 6, 2022 · In this tutorial, we will walk through the implementation of a different and unique clustering approach with the help of convex hulls. But it’s always important to understand the …

  6. GitHub - taniatitiriga/convex-hulls: Convex hulls visualizer, for my ...

    This repository contains Python implementations of several computational geometry algorithms, focusing on convex hulls, polygons, and related tasks. The algorithms include Andrew's …

  7. Convex Hull — skimage 0.25.2 documentation - scikit-image

    The convex hull of a binary image is the set of pixels included in the smallest convex polygon that surround all white pixels in the input. A good overview of the algorithm is given on Steve …

  8. OpenCV: Convex Hull

    5 days ago · This tutorial code's is shown lines below. You can also download it from here. Template class for specifying the size of an image or rectangle. // Use the content pane's …

  9. Introduction — pyhull 1.5.4 documentation - pythonhosted.org

    Pyhull is a Python wrapper to qhull (http://www.qhull.org/) for the computation of the convex hull, Delaunay triangulation and Voronoi diagram. It is written as a Python C extension, with both …

  10. Finding the Convex Hull of a 2-D Dataset

    This code finds the subsets of points describing the convex hull around a set of 2-D data points. The code optionally uses pylab to animate its progress.