For finding the visual center of a polygon.
Project description
Visual-Center
Aliases: polyLabel, pole-of-inaccessibility, largest inscribed circle
Python 3.10 >=
pip install visual-center
Calculates the pole of inaccessibility of a polygon with optimizations based off of 'A new algorithm for finding a visual center of a polygon'
This is a port of Polylabel
If this package doesn't suit your needs, there is an alternative port here: Twista/python-polylabel
This package was created with a personal goal of learning more about quadtrees. I wasn't planning on duplicating a port for the public. But now that we're here, I'm packaging this up for pip. Maybe others will find it useful.
What is a 'Visual Center'?
The visual center is the point in a polygon that is furthest from the polygon's edge. For basic shapes, the centroid is usually this point, but for more complex shapes this isn't always the case.
For example, the centroid (Blue dot) of this polygon lands outside of it. The visual center (Red dot) is the point that is furthest from the polygon's edge.
Usage
import visual_center
polygon = [
[0, 0],
[0, 100],
[100, 100],
[100, 0]
]
pole, distance = visual_center.find_pole(polygon)
- Pole is a tuple of the x and y coordinates of the visual center (Named after the pole-of-inaccessibility)
- Distance is the distance from the visual center to the polygon's edge
Examples (Red dot is the pole. Red circle is the distance):
With a hole
This is especially useful for polygons with holes.
import visual_center
polygon = [
[0, 0],
[0, 100],
[100, 100],
[100, 0]
]
holes = [
[[50, 10], [50, 90], [90, 90], [90, 10]],
[[10, 10], [10, 30], [40, 30], [40, 10]]
]
pole, distance = visual_center.find_pole(polygon, holes)
First param is the outer shell polygon. Second param is a list of holes.
Example with holes:
How does it work?
I highly suggest reading the original article: 'A new algorithm for finding a visual center of a polygon'
tl;dr: Uses quadtree partitioning to recursively subdivide the polygon into smaller cells, probing the centers of these cells as candidates and discarding cells that cannot possibly contain a better solution.
Here's some fun visualizations of the algorithm in action:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file visual_center-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: visual_center-0.1.2-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84fe1d81c909685a8146e3131d9f3b81edf0a6a22d56780bcfa18d55deac16e5 |
|
MD5 | 0ff0fa7384b1066f6f02970c9d5da160 |
|
BLAKE2b-256 | b0fe6970c1019204c2e0fc0a6a53527814c5a9b926a281f2d639123c28b17970 |