Skip to main content

A test project using pybind11 and CMake

Project description

Ramer-Douglas-Peucker Algorithm (c++ binding for python via pybind11)

A speed up version of python version of rdp.

C++/pybind11/NumPy implementation of the Ramer-Douglas-Peucker algorithm (Ramer 1972; Douglas and Peucker 1973) for 2D and 3D data.

The Ramer-Douglas-Peucker algorithm is an algorithm for reducing the number of points in a curve that is approximated by a series of points.

Installation

via pip

pip install pybind11-rdp

from source

pip install git+https://github.com/cubao/pybind11-rdp.git

Or

git clone --recursive https://github.com/cubao/pybind11-rdp
pip install ./pybind11-rdp

Usage

Simple pythonic interface:

from rdp import rdp

rdp([[1, 1], [2, 2], [3, 3], [4, 4]])
[[1, 1], [4, 4]]
With epsilon=0.5:

rdp([[1, 1], [1, 1.1], [2, 2]], epsilon=0.5)
[[1.0, 1.0], [2.0, 2.0]]

Numpy interface:

import numpy as np
from rdp import rdp

rdp(np.array([1, 1, 2, 2, 3, 3, 4, 4]).reshape(4, 2))
array([[1, 1],
       [4, 4]])

Links

References

Douglas, David H, and Thomas K Peucker. 1973. “Algorithms for the Reduction of the Number of Points Required to Represent a Digitized Line or Its Caricature.” Cartographica: The International Journal for Geographic Information and Geovisualization 10 (2): 112–122.

Ramer, Urs. 1972. “An Iterative Procedure for the Polygonal Approximation of Plane Curves.” Computer Graphics and Image Processing 1 (3): 244–256.

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 Distributions

pybind11_rdp-0.0.1-cp310-cp310-win_amd64.whl (65.6 kB view hashes)

Uploaded CPython 3.10 Windows x86-64

pybind11_rdp-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (80.4 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pybind11_rdp-0.0.1-cp310-cp310-macosx_11_0_arm64.whl (51.1 kB view hashes)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pybind11_rdp-0.0.1-cp39-cp39-win_amd64.whl (65.7 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

pybind11_rdp-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (80.6 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pybind11_rdp-0.0.1-cp39-cp39-macosx_11_0_arm64.whl (51.2 kB view hashes)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pybind11_rdp-0.0.1-cp38-cp38-win_amd64.whl (65.7 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

pybind11_rdp-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (80.3 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pybind11_rdp-0.0.1-cp38-cp38-macosx_11_0_arm64.whl (51.1 kB view hashes)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pybind11_rdp-0.0.1-cp37-cp37m-win_amd64.whl (65.7 kB view hashes)

Uploaded CPython 3.7m Windows x86-64

pybind11_rdp-0.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (81.6 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pybind11_rdp-0.0.1-cp36-cp36m-win_amd64.whl (65.7 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

pybind11_rdp-0.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (81.5 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page