A module for simplifying 2D and 3D lines using Ramer-Douglas-Peucker algorithm
Project description
simplify5d
A module for simplifying 2D and 3D lines using Ramer-Douglas-Peucker algorithm.
An extended port of the very fast simplify.js - https://github.com/mourner/simplify-js
Installation
Install using pip:
pip install simplify5d
Usage
import numpy as np
from simplify5d import simplify
points_2d = np.array([[0, 0], [1, 1], [2, 2], [3, 3]])
points_3d = np.array([[0, 0, 0], [1, 1, 1], [2, 2, 2], [3, 3, 3]])
simplified_2d = simplify(points_2d, tolerance=1.0, highest_quality=False)
simplified_3d = simplify(points_3d, tolerance=1.0, highest_quality=False)
print("Simplified 2D points:", simplified_2d)
print("Simplified 3D points:", simplified_3d)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file simplify5d-0.2.4-py3-none-any.whl.
File metadata
- Download URL: simplify5d-0.2.4-py3-none-any.whl
- Upload date:
- Size: 3.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41d1678b2b18e7d662ec8808d05d17652f24622d7d4ad029e8829e96f5944184
|
|
| MD5 |
e48c3d6ee4dd4360002137bfe4c194f3
|
|
| BLAKE2b-256 |
4c07429355e8bb3d0fdabf289790a8701387ebacb28ab1aec1f66c3949991255
|